diff options
Diffstat (limited to 'GunRotation.gd')
-rw-r--r-- | GunRotation.gd | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/GunRotation.gd b/GunRotation.gd new file mode 100644 index 0000000..5398519 --- /dev/null +++ b/GunRotation.gd @@ -0,0 +1,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) |