1234567891011121314151617181920212223 |
- var t = require;
- var e = module;
- var i = exports;
- Object.defineProperty(i, "__esModule", {value: !0}),
- (i.default = class {
- constructor() {
- (this.tree = null),
- (this.debug = null),
- (this.target = null),
- (this.blackboard = null),
- (this._openNodes = []),
- (this._nodeCount = 0);
- }
- _enterNode(t) {
- this._nodeCount++, this._openNodes.push(t);
- }
- _openNode(t) {}
- _tickNode(t) {}
- _closeNode(t) {
- this._openNodes.pop();
- }
- _exitNode(t) {}
- });
|