Class ActionOut<Output>
Abstract class for Out Actions. Inherit from this class to create an Action that returns some data.
Inherited Members
Namespace: UnityEditor.PixyzPlugin4Unity.Actions
Assembly: Unity.Pixyz.Plugin4Unity.Editor.dll
Syntax
public abstract class ActionOut<Output> : ActionBase
Type Parameters
| Name | Description |
|---|---|
| Output | Specifies what kind of data the actions outputs. |
Remarks
Can be used to create a RuleEngine Actions (starting points).
Properties
| Name | Description |
|---|---|
| InputType | Input type. This is always null in the case of a Out-only Action. |
| OutputType | Output type. Specifies what kind of data the actions outputs. |
Methods
| Name | Description |
|---|---|
| PostProcess(ref Output) | Use to modify the output after the 'Run' method is executed. Always executed on the main thread. |
| Run() | Abstract execution method. When creating a new Action, this method implementation will hold all the processing code. |