UNPKG

behaviortree

Version:

A JavaScript implementation of Behavior Trees. They are useful for implementing AIs. For Browsers and NodeJS.

10 lines 377 B
import BranchNode from './BranchNode'; import { Blackboard, RunConfig } from './types'; export default class Random extends BranchNode { nodeType: string; run(blackboard?: Blackboard, { lastRun, introspector, rerun, registryLookUp }?: RunConfig): import("./types").RunResult | { total: symbol; state: any[]; }; } //# sourceMappingURL=Random.d.ts.map