How to Orbitcontrol rotation side inversion

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 :smiley: You are awesome @prisoner849

And you are welcome :beers:

1 Like