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.

14 lines (13 loc) 399 B
'use strict'; angular.module('editorApp') .directive('formGroupParamEditor', function() { return { template: '<div class="form-group"><label>{{property.name()}}</label><property-reset property="property"></property-reset><ng-transclude></ng-transclude></div>', restrict: 'EA', replace: true, transclude: true, scope: { property: '=', } }; });