Esempio n. 1
0
 /// <summary>
 /// Pause the tween animation (if the tween is currently playing)
 /// </summary>
 public override void Pause()
 {
     if (IsPlaying)
     {
         validateTweenConfiguration();
         group.Pause();
     }
 }