예제 #1
0
        public void SetCurrentFrame(Frame frame)
        {
            if (CurrentAnimation != null)
            {
                CurrentAnimation.Stop();
            }

            CurrentFrame = frame;
        }
예제 #2
0
 public void Stop()
 {
     CurrentAnimation.Stop();
 }
예제 #3
0
 /// <summary>
 /// Stop playback.  This will reset the animation to the first frame.
 /// </summary>
 public void Stop()
 {
     Active = false;
     CurrentAnimation.Stop();
 }