From 063359c6025aca4d7c24ca9d72d20cf3a34f6094 Mon Sep 17 00:00:00 2001 From: Josef Date: Sat, 19 Apr 2025 15:32:08 +0200 Subject: [PATCH] Syncing Udpate --- Runtime/Interactions/CharacterController/CharacterController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/Interactions/CharacterController/CharacterController.cs b/Runtime/Interactions/CharacterController/CharacterController.cs index aa38683..de983c6 100644 --- a/Runtime/Interactions/CharacterController/CharacterController.cs +++ b/Runtime/Interactions/CharacterController/CharacterController.cs @@ -64,7 +64,7 @@ namespace Rokojori if ( CharacterUpdateMode.Physics_Process == characterUpdateMode ) { this.delta = (float)delta; - Nodes.ForEach( actionsContainer, a => Action.Trigger( a ) ); + Nodes.ForEachDirectChild( actionsContainer, a => Action.Trigger( a ) ); } } }