Exemple #1
0
 public ActionMoving(int id, MoveableAnimation moveableAnimation, Transform transform, CharacterController characterController, float speed)
     : base(id, false)
 {
     mMoveableAnimation   = moveableAnimation;
     mTransform           = transform;
     mCharacterController = characterController;
     mSpeed = speed;
 }
Exemple #2
0
 public ActionRun(int id, MoveableAnimation moveableAnimation, Transform transform, CharacterController characterController, float speed)
     : base(id, moveableAnimation, transform, characterController, speed)
 {
 }
Exemple #3
0
 public ActionIdle(int id, MoveableAnimation moveableAnimation)
     : base(id, false)
 {
     mMoveableAnimation = moveableAnimation;
 }