UNPKG

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.

13 lines (11 loc) 276 B
'use strict'; angular.module('editorApp') .controller('MainCtrl', function ($location, $httpParamSerializer) { this.openTree = function (treePath) { if (treePath) { $location.path('/tree').search({ path: treePath }); } } });