Compare commits

..

2 Commits

Author SHA1 Message Date
SkyanUltra
d547ae57b0 Update "FlyMove" to "WingMove" in animation fallbacks 2025-10-14 17:47:00 -04:00
SkyanUltra
8f16e587c6 Updated "FlyMove" to "WingMove" for consistency 2025-10-14 17:46:04 -04:00
2 changed files with 2 additions and 2 deletions

View File

@@ -169,7 +169,7 @@ const ANIMATION_FALLBACKS := {
"SkidAttack": "MoveAttack",
"WingIdle": "WaterIdle",
"FlyUp": "SwimUp",
"FlyMove": "SwimMove",
"WingMove": "SwimMove",
"FlyAttack": "SwimAttack",
"FlyBump": "SwimBump",
"FlagSlide": "Climb",

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: