Unpause() публичный Метод

Unpauses the animation.
public Unpause ( ) : void
Результат void
Пример #1
0
 /// <summary>
 /// Resumes an animation from where it left off previously.
 /// </summary>
 public void UnpauseAnim()
 {
     if (curAnim != null)
     {
         curAnim.Unpause();
         animating = true;
     }
 }