how to change the rotation of an object in unity code example
Example 1: unity how to change rotation
transform.eulerAngles = new Vector3(0f, 180f, 0f);
Example 2: how to get rotation of object in unity c#
float angleX = myTransformGO.rotation.eulerAngles.x;
float angleY = myTransformGO.rotation.eulerAngles.y;
float angleZ = myTransformGO.rotation.eulerAngles.z;
Example 3: how to change rotate with script unity
var rotationVector = transform.rotation.eulerAngles;
rotationVector.z = 0;
transform.rotation = Quaternion.Euler(rotationVector);
Example 4: how to chagne rotation in unity
transform.eulerAngles = new Vector3(0f, 180f, 0f);