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.

18 lines (13 loc) 303 B
'use strict'; angular.module('editorApp') .controller('NavbarCtrl', function ($scope, $location) { $scope.menu = [{ 'title': 'Home', 'link': '/' } ]; $scope.isCollapsed = true; $scope.isActive = function(route) { return route === $location.path(); }; });