behaviortree
Version:
A JavaScript implementation of Behavior Trees. They are useful for implementing AIs. For Browsers and NodeJS.
11 lines • 472 B
TypeScript
import Parallel from './Parallel';
import { RunResult } from './types';
/**
* The Parallel node runs all of its children in parallel and is running until the first children is
* returning a result and that result will be retuend. In a tie a FAILURE would win over a SUCCESS.
*/
export default class ParallelComplete extends Parallel {
nodeType: string;
protected calcResult(results: Array<RunResult>): RunResult;
}
//# sourceMappingURL=ParallelComplete.d.ts.map