Updated "FlyMove" to "WingMove" for consistency

This commit is contained in:
SkyanUltra
2025-10-14 17:46:04 -04:00
committed by GitHub
parent 6773a5a093
commit 8f16e587c6

View File

@@ -235,7 +235,7 @@ func get_animation_name() -> String:
if player.in_water:
return "WaterMove"
elif player.flight_meter > 0:
return "FlyMove"
return "WingMove"
elif abs(player.velocity.x) < player.RUN_SPEED - 10:
return "Walk"
else: