using UnityEngine; namespace MAVRIC.GEEKCup.Portraits { public class CopyRotation : MonoBehaviour { public Transform source; // Update is called once per frame void Update() { transform.rotation = source.rotation; } } }