Exemplo n.º 1
0
 protected override Tween DOPlay()
 {
     if (null == m_Transform)
     {
         return(null);
     }
     // end if
     if (m_toPath == null || m_toPath.Length <= 0)
     {
         return(null);
     }
     // end if
     if (m_showGizmo)
     {
         return(ShortcutExtensions.DOPath(m_target, m_toPath, m_duration, m_pathType, m_pathMode, m_resolution, m_gizmoColor));
     } // end if
     return(ShortcutExtensions.DOPath(m_target, m_toPath, m_duration, m_pathType, m_pathMode, m_resolution));
 }