Esempio n. 1
0
 public void CreateAnimation(string animation, float delay, bool reset)
 {
     _animations[animation]       = new FramesList(delay);
     _animations[animation].Reset = reset;
 }
Esempio n. 2
0
 public void CreateAnimation(string animation)
 {
     _animations[animation] = new FramesList(0);
 }
Esempio n. 3
0
 public void CreateAnimation(string animation, float delay)
 {
     _animations[animation] = new FramesList(delay);
 }