rename player-related classes

This commit is contained in:
2025-08-14 14:38:05 +10:00
parent 77658021ec
commit 568104edf6
13 changed files with 133 additions and 135 deletions

View File

@@ -69,7 +69,7 @@ func _handle_cursor(player_index: int, delta: float) -> void:
cursor.side = lerpf(
cursor.side as float,
(PI / 2.0) * (1.0 if player.attack.side == PlayerAttack.Side.LEFT else -1.0),
(PI / 2.0) * (1.0 if player.attack.side == PlayerAttacker.Side.LEFT else -1.0),
_side_change_speed * delta
)