I want one object to rotate the same as another object, however instead of reflecting the exact rotation it just spins
Notes:
-
Neither object has a rigidbody
-
Both are children of different parent objects
function Update ()
{
var rotation = GameObject.Find(“Mechintosh_Head”).transform.eulerAngles.y;
transform.Rotate(0, rotation, 0);
}