|
@@ -45,7 +45,7 @@ func _process(delta):
|
|
|
|
|
|
|
|
|
func _input(event):
|
|
|
- if event is InputEventMouseButton:
|
|
|
+ if event is InputEventMouseButton or event is InputEventMouseMotion :
|
|
|
target = event.position
|
|
|
target_reached = false
|
|
|
|
|
@@ -72,8 +72,11 @@ func get_velocity_from_action() -> Vector2:
|
|
|
func get_velocity_from_target(delta):
|
|
|
if target_reached :
|
|
|
return Vector2.ZERO
|
|
|
+
|
|
|
var path = target - position
|
|
|
+
|
|
|
if path.length_squared() < speed * speed * delta * delta :
|
|
|
target_reached = true
|
|
|
+ return Vector2.ZERO
|
|
|
|
|
|
return path
|