Class RepeatNode
DecoratorNode returns State Running Regardless of the Child Nodes State.
Inherited Members
Namespace: GraphViewBehaviorTree.Nodes
Assembly: cs.temp.dll.dll
Syntax
[Serializable]
public class RepeatNode : DecoratorNode
Methods
OnStart()
Runs when the Node first starts running. Initialize the Node.
Declaration
protected override void OnStart()
Overrides
OnStop()
Runs when the Node Stops. Any Cleanup that the Node may need to do.
Declaration
protected override void OnStop()
Overrides
OnUpdate()
Runs every Update of the Node.
Declaration
protected override Node.State OnUpdate()
Returns
Type | Description |
---|---|
Node.State | The State the Node is in once it finishes Updating. |