Compare commits

...

2 Commits

Author SHA1 Message Date
Josef 22530dff10 Merge branch 'main' of community.rokojori.com:Rokojori/rj-action-library 2025-04-19 15:32:23 +02:00
Josef 063359c602 Syncing Udpate 2025-04-19 15:32:08 +02:00
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ namespace Rokojori
if ( CharacterUpdateMode.Physics_Process == characterUpdateMode )
{
this.delta = (float)delta;
Nodes.ForEach<Action>( actionsContainer, a => Action.Trigger( a ) );
Nodes.ForEachDirectChild<CharacterControllerAction>( actionsContainer, a => Action.Trigger( a ) );
}
}
}