Click or drag to resize
IComposite Interface
task which contains array of references to other deciders.

Namespace: Slash.AI.BehaviorTrees.Interfaces
Assembly: Slash.AI.BehaviorTrees (in Slash.AI.BehaviorTrees.dll) Version: 1.0.6018.40184
Syntax
public interface IComposite : ITask

The IComposite type exposes the following members.

Properties
  NameDescription
Public propertyCapacity
Maximum number of children that the composite can take.
Public propertyChildren
Collection of children. Read-only.
Top
Methods
  NameDescription
Public methodAddChild
Adds a child to this group task.
Public methodInsertChild
Inserts a child to this group task at the passed index.
Public methodMoveChild
Moves a child to the passed position inside the group.
Public methodRemoveChild
Removes a child from this group task.
Top
Events
  NameDescription
Public eventChildAdded
Called when a child was added to the composite.
Public eventChildRemoved
Called when a child was removed from the composite.
Top
See Also