Browse Source

:sparkles: Remove debug prints

DricomDragon 2 years ago
parent
commit
57c2a355ae
1 changed files with 0 additions and 4 deletions
  1. 0 4
      godot/Player.gd

+ 0 - 4
godot/Player.gd

@@ -46,7 +46,6 @@ func _process(delta):
 
 func _input(event):
 	if event is InputEventMouseButton:
-		print("Mouse click : ", event.button_index, " at ", event.position)
 		target = event.position
 		target_reached = false
 
@@ -71,13 +70,10 @@ func get_velocity_from_action() -> Vector2:
 	return velocity;
 
 func get_velocity_from_target(delta):
-	print("Try target")
 	if target_reached :
 		return Vector2.ZERO
 	var path = target - position
-	print("Go that way : ", path)
 	if path.length_squared() < speed * speed * delta * delta :
-		print("Reached")
 		target_reached = true
 
 	return path