Interface IBehaviorTreeBlackboard
Represents the blackboard for a behavior tree, which is a shared data structure used by the tree's nodes to read and write variables. The blackboard acts as a central repository for data that can be accessed and modified by different parts of the behavior tree during its execution.
Inherited Members
Namespace: EyeAuras.BehaviorTree
Assembly: EyeAuras.BehaviorTree.Metadata.dll
Syntax
public interface IBehaviorTreeBlackboard : IVariablesAccessor, IEnumerable<AuraVariable>, IEnumerable, ICanSetVariables
Properties
| Name | Description |
|---|---|
| Variables | Gets the hierarchical source cache for the variables used by the behavior tree. This cache stores variables in a hierarchical structure, allowing for efficient access and management of the variables needed by the tree's nodes. |