Forum Discussion
Shruggger
4 years agoExplorer
How do I set the FPS limit on my Oculus Quest 2 unity application?
My unity project is running super well on Quest 2 at 72hz. I believe the game can run at 90hz but I have no clue where I can set the FPS limit/lock. Where / how do I set this FPS lock for my game?
- Anonymous4 years ago
First call this to get an array of available frame rates and make sure "90" is in the array:
OVRPlugin.systemDisplayFrequenciesAvailable
Then you can set the frame rate using this property:
OVRPlugin.systemDisplayFrequencyYou can also subscribe to this event. It will get called when the framerate successfully changes,
or if there's an issue and Oculus resets the frame rate to 72.
OVRManager.DisplayRefreshRateChanged
1 Reply
- Anonymous
First call this to get an array of available frame rates and make sure "90" is in the array:
OVRPlugin.systemDisplayFrequenciesAvailable
Then you can set the frame rate using this property:
OVRPlugin.systemDisplayFrequencyYou can also subscribe to this event. It will get called when the framerate successfully changes,
or if there's an issue and Oculus resets the frame rate to 72.
OVRManager.DisplayRefreshRateChanged
Quick Links
- Horizon Developer Support
- Quest User Forums
- Troubleshooting Forum for problems with a game or app
- Quest Support for problems with your device
Other Meta Support
Related Content
- 1 year ago
- 2 years agoAnonymous