This commit is contained in:
Rosia E Evans 2024-08-16 21:34:40 +01:00
parent db1eeebfcf
commit 27fd9647be
3 changed files with 12 additions and 15 deletions

View file

@ -9,8 +9,8 @@ signal arm_disabled(arm)
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
for arm in arms:
arm_enabled.connect(arm.arm_enabled)
arm_disabled.connect(arm.arm_disabled)
arm_enabled.connect(arm._arm_enabled)
arm_disabled.connect(arm._arm_disabled)
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _physics_process(delta: float) -> void: