blob: 5398519542141ca32292a4e55a834ee6426a1932 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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)
|