示例#1
0
 public PlayerState(DashingPlayer player)
 {
     this.player = player;
 }
示例#2
0
 public PlayerStateDash(DashingPlayer player, Settings configs, Vector2 dashDirection) : base(player)
 {
     this.direction = dashDirection.normalized;
     this.configs   = configs;
 }
示例#3
0
 public PlayerStateFloat(DashingPlayer player) : base(player)
 {
 }
 public PlayerStateGrounded(DashingPlayer player) : base(player)
 {
 }