Possibility to use multiple cameras and scenes
I need to use both OrthographicCamera and PerspectiveCamera for my projects and is it possible to use this library to create multiple cameras and scenes?
It seems it's possible to do so with react-three-fiber like this below https://codesandbox.io/s/react-three-fiber-viewcube-py4db?file=/src/App.js
Hi, can you add details about your use case ? Like the example provided (rendering a scene inside another) ?
I was thinking about adding easy way to handle multiple scenes/cameras (but one camera per scene), it could be handy if we need to 'switch' scenes, I hope I will have time to work on this but I don't know if it fits your needs.
Hi, what I'm specifically trying to do is to render a panorama with some 2d (lottie) hotspots. As far as I understand, it requires 2 cameras to avoid distortions in a sphere or some scale/position calculation while rotating.
https://github.com/ConardLi/tpanorama https://github.com/ConardLi/tpanorama/blob/master/src/component/tpanorama.js
this repo sums up all and doing similar thing that I want to achieve. They render 2 scenes and cameras. Also switching scenes could be useful as well for my use case (even though I'm not considering that now), but the priority is to seek most efficient way to do the multiple cameras to achieve the panorama thing I mentioned.