示例#1
0
 public void PlayAsync(Animation animation)
 {
     Console.WriteLine (animation.Name + " is now playing");
     animation.Play ();
 }
示例#2
0
 public void Play(Animation animation)
 {
     Console.WriteLine (animation.Name + " is now playing");
     animation.Play ();
     animation.PlayThread.Join ();
 }