Is there a way to drag the scene when moving the mouse left or right without rotating the camera?
I attempted
camera.position.x = mouseX;
camera.position.y = mouseY;
However, this resulted in the scene rotating.
Even changing the position in the scene caused rotation.
Any suggestions on how to successfully drag the scene?