Skip to content

Instantly share code, notes, and snippets.

@nhaskins
Created September 4, 2017 01:59
Show Gist options
  • Save nhaskins/f30a6e885ae7f914bd82ea790cbe2d2a to your computer and use it in GitHub Desktop.
Save nhaskins/f30a6e885ae7f914bd82ea790cbe2d2a to your computer and use it in GitHub Desktop.
GearVR quality Setting
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.VR;
public class VRQuality : MonoBehaviour {
public float renderScale = 1.5f;
// Use this for initialization
void Start () {
VRSettings.renderScale = renderScale;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment