owl-bt
Version:
owl-bt is editor for Behavior trees. It has been inspired by Unreal engine behavior trees in a way, that it supports special node items like decorators and services. This makes trees smaller and much more readable.
25 lines (19 loc) • 369 B
JavaScript
;
(function() {
class ProjectStore {
constructor($q) {
this._$q = $q;
}
getNodeTypeDesc(type) {
return type;
}
getDecoratorTypeDesc(type) {
return type;
}
getServiceTypeDesc(type) {
return type;
}
}
angular.module('mocks.ProjectStore', [])
.service('ProjectStore', ProjectStore);
})();