mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-25 17:44:24 +00:00
12 lines
311 B
GDScript3
12 lines
311 B
GDScript3
|
extends Node
|
||
|
class_name MatchMousePosition
|
||
|
|
||
|
|
||
|
@onready var parent: Node2D = get_parent()
|
||
|
@onready var game := MainGame.get_ancestor(self)
|
||
|
|
||
|
|
||
|
func _physics_process(_delta: float) -> void:
|
||
|
var global_mouse_position: Vector2 = game.camera.get_global_mouse_position()
|
||
|
parent.global_position = global_mouse_position
|