As mentioned in #28, react-three automatically renders the scene using requestAnimationFrame even if you don't change the scene. This causes double-rendering if you update the scene with React.render. You can turn it off manually with #29 but the code should check and not render a scene more than once per frame.
As mentioned in #28, react-three automatically renders the scene using
requestAnimationFrame
even if you don't change the scene. This causes double-rendering if you update the scene withReact.render
. You can turn it off manually with #29 but the code should check and not render a scene more than once per frame.