change z rotation unity code example
Example 1: how to just aet z rotation on transform unity
transform.rotation = Quaternion.Euler(0, 90, 0);
Example 2: change z value unity
Vector3 temp = transform.position;
temp.x = 10.0f;
transform.position = temp;