Interface ILinkedNode
Interface for iterate linked node, useful when your graph is based on a linked list which is often used in a forward execution mode like behavior tree
Namespace: Ceres.Graph
Assembly: cs.temp.dll.dll
Syntax
public interface ILinkedNode : IReadOnlyLinkedNode
Methods
AddChild(CeresNode)
Add new child node
Declaration
void AddChild(CeresNode node)
Parameters
Type | Name | Description |
---|---|---|
CeresNode | node |
ClearChildren()
Clear all child nodes
Declaration
void ClearChildren()