ecspresso
    Preparing search index...

    Interface SequenceNode<BB>

    Sequence composite — runs children left-to-right. Fails on first failure, succeeds when all succeed. Resumes from stored child index when a running node exists.

    interface SequenceNode<BB extends object = Record<string, unknown>> {
        children: readonly BehaviorTreeNode<BB>[];
        nodeIndex: number;
        type: "sequence";
    }

    Type Parameters

    • BB extends object = Record<string, unknown>
    Index

    Properties

    children: readonly BehaviorTreeNode<BB>[]
    nodeIndex: number
    type: "sequence"