extends Node # Called when the node enters the scene tree for the first time. func _ready(): pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta): var mouse_position : Vector2 = get_viewport().get_mouse_position() var delta_x : float = mouse_position.x - $"..".global_position.x var delta_y : float = mouse_position.y - $"..".global_position.y $"..".rotation = atan2(delta_y, delta_x)