Unit Reference ActionNode - RealityStop/Bolt.Addons.Community GitHub Wiki
The Create Action creates and exposes an IAction delegate. It allows you to use a callback that can be invoked elsewhere in your graph. When triggered, the delegate executes the connected control flow from the invoke port.
Output Ports
- invoke : Control flow output that is executed when the delegate is invoked.
-
Callback : (Optional) The actual delegate that can be used outside of the
IAction.Example: Action<string> instead of ActionofString -
delegate : The
IActiondelegate instance. -
parameters : Outputs corresponding to the parameters of the
IActiondelegate.