6 lines
121 B
GDScript3
6 lines
121 B
GDScript3
|
extends Node2D
|
||
|
|
||
|
|
||
|
func _process(delta: float) -> void:
|
||
|
position = (Vector2(320, 180) - get_global_mouse_position()) / 40
|