|
@@ -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
|