ecspresso
    Preparing search index...

    Interface BehaviorTreeDefinition<BB>

    Immutable behavior tree definition. Shared across entities.

    interface BehaviorTreeDefinition<BB extends object = Record<string, unknown>> {
        id: string;
        nodeCount: number;
        root: BehaviorTreeNode<BB>;
    }

    Type Parameters

    • BB extends object = Record<string, unknown>

      Blackboard type for per-entity AI memory

    Index

    Properties

    Properties

    id: string
    nodeCount: number