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