Class KaijuActuatorAction
Base class for actuator actions.
Namespace: KaijuSolutions.Agents.Behavior.Actuators
Syntax
[Serializable]
public abstract class KaijuActuatorAction
Fields
actuator
The actuator this is for.
Declaration
public BlackboardVariable<KaijuActuator> actuator
Field Value
| Type | Description |
|---|---|
| BlackboardVariable<KaijuActuator> |
Methods
OnStart()
OnStart is called when the node starts running.
Declaration
protected override Status OnStart()
Returns
| Type | Description |
|---|---|
| Status | The status of the node. |
OnUpdate()
OnUpdate is called each frame while the node is running.
Declaration
protected override Status OnUpdate()
Returns
| Type | Description |
|---|---|
| Status | The status of the node. |
ValidActuator()
See if this actuator is valid or not.
Declaration
protected bool ValidActuator()
Returns
| Type | Description |
|---|---|
| System.Boolean | If the actuator is valid or not. |