threeVR
threeVR copied to clipboard
CSS3DRenderer doesn't work with the latest revision of Three.js
Hi, I have been testing out the library with the latest revision of Three.js, 73, and found that it works great with the WebGLRenderer but when I switch to the CSS3DRenderer, DeviceOrientationController stops functioning. The sides are loaded but they don't move. But I found when I revert back to 71 it works fine again. It's also broken in 72.
I started looking into it but I'm new to Three.js so I haven't been able to track down what change broke it. Thanks!
modify CSS3DRenderer.js -if ( camera.parent === undefined ) camera.updateMatrixWorld(); +if ( camera.parent === null ) camera.updateMatrixWorld();
demo success!
Excellent! It works. Thanks so much for looking into this!