Camera starting position / rotation orbital controls

So I am trying to set the camera rotation starting point so for example
camera.rotation.set(-10, 0, 0); but this doesn’t seem to be doing anything I am using controls.target.set(0, 0, 0); is this why? and if so how can I get around this?
Thank you in advance

If your camera is using OrbitControls you cannot easily set rotation manually (orbit controls reset camera to point at the target on next update call.)
What you can adjust though is the camera’s position. So if you move camera to the left, it will automatically rotate to the right to face the target again.