13 lines
263 B
GDScript
13 lines
263 B
GDScript
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
|