From a6839bc96ba61fc470d4cdaf767c1dd9148648c3 Mon Sep 17 00:00:00 2001 From: Mathilde Grapin Date: Sun, 11 Jun 2023 23:47:46 +0200 Subject: [PATCH] Fix bad space --- 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 c625b18..7a3edce 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")