Skip to content

Unit Reference ActionNode

S2NX7 edited this page Oct 9, 2025 · 4 revisions

Create Action

Screenshot 2025-09-30 130318

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.
Clone this wiki locally