When I try to import OVR into my project, I get quite a few errors. It doesn’t matter whether it is a fresh project or one that I worked on. Any help?
The 2 yellow warnings tell you what to do to fix but they won’t break your project by just leaving them.
The red error…double click it to go into monodevelop and comment out that line.
the red error might not be important, but better change it to
PlayerSettings.d3d11FullscreenMode = D3D11FullscreenMode.ExclusiveMode;
instead of commenting that out. If it was false (I haven’t tried to set OVR + I don’t know if it is a boolean), use this:
PlayerSettings.d3d11FullscreenMode = D3D11FullscreenMode.FullscreenWindow;