예제 #1
0
 public void setState(MovementState state)
 {
     this.state = state;
 }
예제 #2
0
 public void setMovementState(MovementState direction)
 {
     this.direction = direction;
 }
예제 #3
0
 public void setMovementDirection(MovementState state)
 {
     this.direction = state;
 }
예제 #4
0
 public void changeDirection(MovementState move)
 {
     this.direction = move;
 }
예제 #5
0
 public Projectile(GameObject gameobject, MovementState movement) : base(gameobject)
 {
     this.movement = movement;
 }