Esempio n. 1
0
 public override void DoBeforeEntering()
 {
     //entity.CanMovement = true;
     EntityEventFactory.PlayAnimation(entity, "run");
 }
Esempio n. 2
0
 public override void DoBeforeEntering()
 {
     //entity.CanMovement = true;
     EntityEventFactory.PlayAnimation(entity, AnimationNameConst.IDLE);
 }
Esempio n. 3
0
 public override void DoBeforeEntering()
 {
     EntityEventFactory.PlayAnimation(entity, AnimationNameConst.DIE);
 }
Esempio n. 4
0
 public override void DoBeforeEntering()
 {
     //entity.CanMovement = false;
     _hurt_time = 0;
     EntityEventFactory.PlayAnimation(entity, AnimationNameConst.HIT);
 }