Forum Discussion
dodderz
11 years agoHonored Guest
Dll problem with Unity 4.x Legacy Integration V0.6.2.0
I'm unable to get the sample scenes (eg: cubes scene) to run on Gear VR using this version of the unity integration. The error I'm getting is: Unable to lookup library path for 'OVRPlugin', native...
vrdaveb
11 years agoOculus Staff
You mean this line?
A non-fatal exception is expected there when we call ovrp_GetString. It's inside of a try-catch block and falls back to 0.0.0.0. You are probably running into a different error later on. For now, does it help to replace that line with something like the following?
System.Version ovrVersion = OVRPlugin.version;
A non-fatal exception is expected there when we call ovrp_GetString. It's inside of a try-catch block and falls back to 0.0.0.0. You are probably running into a different error later on. For now, does it help to replace that line with something like the following?
#if UNITY_ANDROID && !UNITY_EDITOR
System.Version ovrVersion = new System.Version(0,0,0,0);
#else
System.Version ovrVersion = OVRPlugin.version;
#endif
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
- 7 months ago
- 2 years ago
- 12 months ago
- 2 months ago