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)