Class ActionVoid
Abstract class for In Actions. Inherit from this class to create an Action that do something from a given input.
Inherited Members
Namespace: UnityEditor.PixyzPlugin4Unity.Actions
Assembly: Unity.Pixyz.Plugin4Unity.Editor.dll
Syntax
public abstract class ActionVoid : ActionBase
Remarks
Can be used to create RuleEngine Actions (end points).
Properties
| Name | Description |
|---|---|
| InputType | Input type. Specifies what kind of data enters the actions. |
| OutputType | Output type. This is always null in the case of a In-only Action. |
Methods
| Name | Description |
|---|---|
| Run() | Abstract execution method. When creating a new Action, this method implementation will hold all the processing code. |