mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 16:14:22 +00:00
41 lines
960 B
GDScript
41 lines
960 B
GDScript
extends Node2D
|
|
class_name MoveTowardsMouse
|
|
|
|
|
|
signal move(movement: Vector2)
|
|
signal detached
|
|
signal captured
|
|
|
|
|
|
@export var speed: float = 100.0
|
|
@export var can_detach: bool = false
|
|
|
|
@onready var game := MainGame.get_ancestor(self)
|
|
|
|
|
|
enum State { DETACHED, CAPTURED }
|
|
|
|
var state: State = State.DETACHED
|
|
|
|
|
|
func get_relative_mouse_position():
|
|
var global_mouse_position: Vector2 = game.camera.get_global_mouse_position()
|
|
var relative_mouse_position: Vector2 = global_mouse_position - global_position
|
|
return relative_mouse_position
|
|
|
|
|
|
func _physics_process(delta: float) -> void:
|
|
match state:
|
|
State.CAPTURED:
|
|
var direction: Vector2 = position.direction_to(get_relative_mouse_position())
|
|
var movement: Vector2 = direction * delta * speed
|
|
move.emit(movement)
|
|
|
|
func _on_capture_area_mouse_entered() -> void:
|
|
state = State.CAPTURED
|
|
captured.emit()
|
|
|
|
func _on_capture_area_mouse_exited() -> void:
|
|
if can_detach:
|
|
state = State.DETACHED
|
|
detached.emit()
|