using UnityEngine; namespace ARTNGAME.Skymaster { public abstract class PivotBasedCameraRigSM : AbstractTargetFollowerSM { protected Transform m_Cam; protected Transform m_Pivot; protected Vector3 m_LastTargetPosition; protected virtual void Awake() { m_Cam = GetComponentInChildren().transform; m_Pivot = m_Cam.parent; } } }