Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Oculus Quest Support #194

Open
BrainSlugs83 opened this issue Sep 17, 2019 · 1 comment
Open

Oculus Quest Support #194

BrainSlugs83 opened this issue Sep 17, 2019 · 1 comment

Comments

@BrainSlugs83
Copy link

BrainSlugs83 commented Sep 17, 2019

Tried to use it with Oculus Quest (which uses the same OVR SDK), but it was super frustrating.

There was no support in the editor (I would expect to use FPS movement controls in the editor, like in VRTK), but you're just stuck with a floor level camera...

I tried to build the project and run it on the quest, and also, stuck at floor level on the Camera.

I moved the NVRPlayer->Head game object up and that worked, but nothing I tried enabled the hands or any kind of controller support (let alone joystick movement...) -- I even tried dragging the sphere prefab in, and nothing worked. 🙁

Also I would expect it to detect my height and use that properly (or at least use the height of the prefab robot guy).

@fishtopher
Copy link

I just got hit by this:
at NVRPlayer.cs:270 replace
if (UnityEngine.XR.XRDevice.model.IndexOf("oculus", System.StringComparison.CurrentCultureIgnoreCase) != -1)

with
if ((UnityEngine.XR.XRDevice.model.IndexOf("oculus", System.StringComparison.CurrentCultureIgnoreCase) != -1) || (UnityEngine.XR.XRDevice.model.IndexOf("quest", System.StringComparison.CurrentCultureIgnoreCase) != -1))

for a quick fix

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants