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,12 @@
extends Node3D
@export var move:GUIDEAction
@export var rotate_player:GUIDEAction
@export var walk_mode:GUIDEMappingContext
func _ready() -> void:
GUIDE.enable_mapping_context(walk_mode)
func _process(delta: float) -> void:
# print(move.value_axis_3d)
pass