浏览代码

:sparkles: Remove debug prints

DricomDragon 2 年之前
父节点
当前提交
57c2a355ae
共有 1 个文件被更改,包括 0 次插入4 次删除
  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