Compare commits

..

No commits in common. "22530dff10cf856b144261a44ee72be795b71126" and "97324647cedfcf37eed2eed7dd015ba0cb448af3" have entirely different histories.

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.ForEachDirectChild<CharacterControllerAction>( actionsContainer, a => Action.Trigger( a ) );
Nodes.ForEach<Action>( actionsContainer, a => Action.Trigger( a ) );
}
}
}