From 09f6925a00d7381fd87f22dac001fbfb5f93c58f Mon Sep 17 00:00:00 2001 From: Mathilde Grapin Date: Sun, 11 Jun 2023 23:48:59 +0200 Subject: [PATCH] Fix quote --- scripts/player_walk_state.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/player_walk_state.gd b/scripts/player_walk_state.gd index 7a3edce..dc96beb 100644 --- a/scripts/player_walk_state.gd +++ b/scripts/player_walk_state.gd @@ -8,7 +8,7 @@ func physics_update(_delta): var direction = get_input_direction() player.velocity = direction * player.speed - player.move_and_slide() # This method calculate with delta, we don’t need to do it. + player.move_and_slide() # This method calculate with delta, we don't need to do it. if player.velocity == Vector2.ZERO: state_machine.transition_to("Idle")