diff --git a/game/src/Player.c b/game/src/Player.c index fa420e2..8082e9b 100644 --- a/game/src/Player.c +++ b/game/src/Player.c @@ -109,7 +109,9 @@ void PlayerAttackInput(Player* self, InputEvent value) { self->attackInput = 1; } -void PlayerStart(Player* self) {} +void PlayerStart(Player* self) { + animation_sprite_play_from(self->currentAnimation, 0.0f); +} void PlayerUpdate(Player* self, float deltaTime) { state_machine_update(self->animationStateMachine, deltaTime);