Bruno Fanini
Bruno Fanini
I can confirm the exact same issue on a Quest 2 updated to latest version THREE r181 Meta browser fails somehow to load new tiles (not previously visited) during immersive...
Thanks! I can confim that replacing `requestAnimationFrame `with `setTimeout ` (and `clearTimeout`) solves the issue on Meta Quest browser, altough introducing ofc a bit of flickering when a tile is...
So, I tried successfully this approach: ``` requestAnimationFrame = (cb)=>{ if (!tiles._xrSession) return window.requestAnimationFrame(cb); return tiles._xrSession.requestAnimationFrame(cb); }; cancelAnimationFrame = (handle)=>{ if (!tiles._xrSession) window.cancelAnimationFrame(handle); else tiles._xrSession.cancelAnimationFrame(handle); }; ``` with `tiles._xrSession` being...
made an initial PR with a simple AFManager class with routines, from here we should then instantiate it in throttle, QueryManager, PriorityQueue and LRUCache at least. Also I think the...