I would like the panorama to start with the position where the camera looks at the statue, not out of the window.
If I comment out OrbitControls, the camera angle is what I need, but as soon as I uncomment OrbitControls, the camera is back looking out of the window.
I dug through tons of similar topics about the problem of OrbitControls but haven’t found any suitable solution.
You can only modify controls rotation by modifying OrbitControls.target - which by default looks in the direction of (0.0, 0.0, -1.0) (in your case, out that window.) To initially look in the opposite direction, all you have to do is add these two lines:
controls = new OrbitControls(camera, renderer.domElement);
controls.target.set(0.0, 0.0, 1.0);
controls.update();
OrbitControls orbit the target. Changing the target will make the camera orbit another point - so if you skybox is a local cube, you have to reposition it, so that the centre of the cube is again in the same place at the controls target.
Nevertheless, consider using scene.environment / CubeMaps instead of actual geometries - then you won’t need to worry about positioning and depth, since these are always infinitely far away from the camera.
my sources are MIT-licensed, therefore free to use (even commercially).
basically i calculate how much space a scene’s meshes take up, define a gsap path around it, and then run an gsap animation with those gsap points. the center of the world is also calculated by code and stored in a global variable…