Reputation: 21
I have to be missing something: I installed node.js, installed react-360, created the Hello360 app but can't get the page to go into VR Mode in my Oculus Quest via the Oculus Browser. It just looks the same as it does on a PC.
After googling for a while found a note that said it only works with https so I got that working and ... nope no VR.
Under Windows 10 Professional.
Upvotes: 2
Views: 987
Reputation: 196
It looks like the live React-based project right now is https://github.com/pmndrs/react-xr based on https://github.com/pmndrs/react-three-fiber
Upvotes: 0
Reputation: 6545
React 360 uses the WebVR API. Oculus Browser removed support for WebVR in version 9. This is why it's not entering VR.
The replacement for WebVR is WebXR. You might want to pick up a different library which supports WebXR, like AFrame.
immersiveweb.dev has some links to other frameworks (yes, including React 360, but that link is a 404 :P). Or you could go bare-handed with the WebXR API directly.
Upvotes: 2