protected override Tween DOPlay()
 {
     if (null == m_Transform)
     {
         return(null);
     }
     // end if
     if (m_toPath == null || m_toPath.Length <= 0)
     {
         return(null);
     }
     // end if
     return(ShortcutExtensions.DOLocalPath(m_target, m_toPath, m_duration, m_pathType, m_pathMode, m_resolution));
 }