infinite loading screen on oculus quest
See original GitHub issueWhen I try the example on my Oculus Quest (Firmware 14) I get stuck in an infinite loading screen. Connecting the Chrome-Debugger reveals that the gameloop is running, but it seems that the frame is not rendered properly.
One issue I found is that on line 319 in webxr.js
this.xrDisplay.submitFrame();
xrDisplay cannot be found (maybe a relic from webvr?)
Thank you for your help!
Issue Analytics
- State:
- Created 4 years ago
- Reactions:2
- Comments:10 (4 by maintainers)
Top Results From Across the Web
Solved: Oculus Link Infinite Loading? - 759192 - Oculus Forum
Solved: I've been using Quest + Link almost since release and it has been working just fine but now all of a sudden...
Read more >How To Fix Oculus Quest 2 Game Stuck On Loading Screen
Here's what to do if your Oculus Quest 2 is not loading games and you are stuck on the loading screen.
Read more >How to Fix Oculus Quest 2 Stuck on Loading Screen
The Oculus Quest 2 sometimes gets stuck on the loading screen due to low batteries or an update that's having difficulty completing. A...
Read more >Oculus Link Infinite loading screen on Quest 2 : r/OculusQuest
When I try to enable link from within the headset nothing happens. I get the three dots loading and it never goes away....
Read more >Oculus Quest 2 Stuck on Logo Loading Screen (SOLVED)
Oculus Quest 2 Stuck on Logo Loading Screen (SOLVED) · Do a Hard Reboot · Launch Headset from Boot Menu · Connect Charging...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Hi! indeed one of the issues is that there was that
this.xrDisplay.submitFrame();left from the WebVR implementation 😃 I believe another problem could be regarding the windows.rAF call, as that was running previously even if you are inside VR when using the previous WebVR API, but on WebXR the window.rAF is disabled when entering VR, so probably that freezes the Unity execution. I’ll try to take a look at the code to see if it’s something easy to fix or not as I was not involved on the conversion to WebXR. @De-Panther thanks for the hints, I’ll try to look into these too! 😃Those are good news. Is there a place to talk about future updates for this repo? (not a single suggestion or a feature request) I have some directions in which I wanted to take my repo, but if they are all aligned, there’s might no need to work on two different ones.