how to move a camrea to a specified location and specified rotation?
1 Answer
1You can set it directly, the same way as you would with any other variable.
specificLocation : Vector3;
specificRotation : Quaternion;
camera.main.position = specificLocation;
camera.main.rotation = specificRotation;