gd: added input addon

This commit is contained in:
2025-05-27 19:20:46 +02:00
parent d8a1604af9
commit c8d8c7ec25
683 changed files with 21608 additions and 2 deletions

View File

@ -0,0 +1,13 @@
extends CSGSphere3D
@export var cursor:GUIDEAction
@export var camera_toggle:GUIDEAction
func _process(delta):
var new_pos = cursor.value_axis_3d
if not new_pos.is_finite() or camera_toggle.is_triggered():
visible = false
return
visible = true
global_position = new_pos