 | ITaskGetActiveTasks Method |
Generates a collection of active task nodes under this task. Used for debugging only.
Namespace: Slash.AI.BehaviorTrees.InterfacesAssembly: Slash.AI.BehaviorTrees (in Slash.AI.BehaviorTrees.dll) Version: 1.0.6018.40184
Syntaxvoid GetActiveTasks(
IAgentData agentData,
TaskNode taskNode,
ref ICollection<TaskNode> activeTasks
)
Sub GetActiveTasks (
agentData As IAgentData,
taskNode As TaskNode,
ByRef activeTasks As ICollection(Of TaskNode)
)
void GetActiveTasks(
IAgentData^ agentData,
TaskNode^ taskNode,
ICollection<TaskNode^>^% activeTasks
)
abstract GetActiveTasks :
agentData : IAgentData *
taskNode : TaskNode *
activeTasks : ICollection<TaskNode> byref -> unit
Parameters
- agentData
- Type: Slash.AI.BehaviorTrees.InterfacesIAgentData
Agent data. - taskNode
- Type: Slash.AI.BehaviorTrees.TreeTaskNode
Task node of this task. - activeTasks
- Type: System.Collections.GenericICollectionTaskNode
Collection of active task nodes.
See Also