I need to change the orbitcontrol as inversion. i.e., If I rotate the object to right side using the OrbitControl, then the rotation should be in left side. How to get this inverted control in Orbit control.
1 Like
Hi!
Try this:
let controls = new OrbitControls(camera, renderer.domElement);
controls.rotateSpeed *= -1;
4 Likes
Wow You are awesome @prisoner849
And you are welcome
1 Like