From ae59ef5669058fe714972be4cb8ce838836cfd78 Mon Sep 17 00:00:00 2001 From: Ruslan Ignatov Date: Mon, 20 Oct 2025 22:23:46 +0300 Subject: [PATCH] Removed debug print --- game/entities/player.gd | 1 - 1 file changed, 1 deletion(-) diff --git a/game/entities/player.gd b/game/entities/player.gd index 271139f..599da0e 100644 --- a/game/entities/player.gd +++ b/game/entities/player.gd @@ -10,7 +10,6 @@ var position : Vector2: func _process(delta: float) -> void: var input_direction := Input.get_vector("move_left", "move_right", "move_up", "move_down") - print(input_direction) if input_direction.is_zero_approx(): $Ship.decelerate($Ship.deceleration * delta)