using Godot; namespace Rokojori { [GlobalClass] public partial class ActionList : RJAction { [Export] public RJAction[] actions; [Export] public bool triggerDirectChildren = true; protected override void _OnTrigger() { for ( int i = 0; i < actions.Length; i++ ) { Actions.Trigger( actions[ i ] ); } } } }