Beispiel #1
0
 public void Start()
 {
     if (Tweens.Count > 0)
     {
         CurrentAnimation = Tweens.Dequeue();
         CurrentAnimation.Play();
         CurrentAnimation.AnimationEnd += Start;
     }
 }
Beispiel #2
0
 public void Play()
 {
     CurrentAnimation = Tweens.Peek();
     CurrentAnimation.Play();
 }