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 (12 loc) 317 B
'use strict'; angular.module('editorApp') .directive('propertyReset', function() { return { template: '<span class="fa fa-undo icon-button" ng-click="property.reset()" ng-if="property.isSet()"></span>', restrict: 'EA', replace: true, scope: { property: '=', } }; });