Property BehaviorTrees
BehaviorTrees
Gets an observable list of all behavior trees in the system.
Declaration
IObservableList<IBehaviorTree> BehaviorTrees { get; }
Property Value
Type | Description |
---|---|
IObservableList<IBehaviorTree> |
Examples
// Find enabled trees
var enabledTrees = eyeServices.BehaviorTrees.Items
.Where(t => t.IsEnabled)
.ToList();