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 ) ); } } }