-
Notifications
You must be signed in to change notification settings - Fork 37
Unit Reference ActionNode
S2NX7 edited this page Oct 9, 2025
·
4 revisions

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
IAction
delegate instance. -
parameters : Outputs corresponding to the parameters of the
IAction
delegate.