adds basic arm control flow system

This commit is contained in:
Rosia E Evans 2024-08-16 21:24:48 +01:00
parent 476d817a63
commit 60988cf783
4 changed files with 27 additions and 8 deletions

View file

@ -1,6 +1,6 @@
extends Node3D
@export var key: Key
@export var action: StringName
# Called when the node enters the scene tree for the first time.
@ -11,3 +11,12 @@ func _ready() -> void:
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass
func _arm_enabled(arm):
print_debug("enabled!")
pass
func _arm_disabled(arm):
print_debug("disabled!")
pass