private static void DrawTransposerGizmos(CinemachineDolly target, GizmoType selectionType)
 {
     if (target.IsValid)
     {
         CinemachinePathEditor.DrawPathGizmos(target.m_Path, selectionType);
     }
 }
 private static void DrawTrackeDollyGizmos(CinemachineTrackedDolly target, GizmoType selectionType)
 {
     if (target.IsValid)
     {
         CinemachinePath path = target.m_Path as CinemachinePath;
         if (path != null)
         {
             CinemachinePathEditor.DrawPathGizmos(path, selectionType);
         }
     }
 }