behaviortree
Version:
A JavaScript implementation of Behavior Trees. They are useful for implementing AIs. For Browsers and NodeJS.
11 lines • 396 B
TypeScript
import Parallel from './Parallel';
import { RunResult } from './types';
/**
* The Parallel node runs all of its children in parallel and is running as long as one of the children is
* still running.
*/
export default class ParallelSelector extends Parallel {
nodeType: string;
protected calcResult(results: Array<RunResult>): RunResult;
}
//# sourceMappingURL=ParallelSelector.d.ts.map