Forum Discussion
ExampleFlamer
11 years agoHonored Guest
Can I disable or reduce the default chromatic aberration
For some reason the chromatic aberration on my Unity Oculus is quite out and isn't working very well. I've had a look through some of the code and I can't seem to find it anywhere.
vrdaveb
11 years agoOculus Staff
No need to modify the Oculus scripts. You can write a script of your own (say, DisableCA.cs) as follows. It should automatically turn off chromatic aberration as soon as the app starts.
using UnityEngine;
public class OVRGamepadController : MonoBehaviour
{
void Start()
{
OVRManager.display.distortionCaps &= ~(uint)DistortionCaps.Chromatic;
}
}
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
- 13 years ago
- 4 months ago
- 8 months ago
- 9 months ago