mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-21 23:54:23 +00:00
Fix reference acquisition in MoveTowardsMouse
This commit is contained in:
parent
04d6e78228
commit
c7bd5c9359
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ signal captured
|
|||
|
||||
@export_range(-500, 500, 1) var speed: float = 100.0
|
||||
|
||||
@onready var game := MainGame.get_ancestor(self)
|
||||
@onready var camera := MainGame.get_ancestor(self).camera
|
||||
|
||||
|
||||
enum State { STILL, CAPTURED }
|
||||
|
@ -17,7 +17,7 @@ var state: State = State.STILL
|
|||
|
||||
|
||||
func get_relative_mouse_position():
|
||||
var global_mouse_position: Vector2 = game.camera.get_global_mouse_position()
|
||||
var global_mouse_position: Vector2 = camera.get_global_mouse_position()
|
||||
var relative_mouse_position: Vector2 = global_mouse_position - global_position
|
||||
return relative_mouse_position
|
||||
|
||||
|
|
Loading…
Reference in a new issue