So I want to move my cameras position around in three.js, but as I move it, I want the cameras rotation to automatically update to point at the origin.
So if i have the camera set as:
camera.position.set(25,25,25)
I would like the camera.rotation to be updated so that it is facing the world origin.
camera.lookAt(0,0,0)?