-
Notifications
You must be signed in to change notification settings - Fork 37
Unit Reference FuncNode
S2NX7 edited this page Sep 30, 2025
·
2 revisions

The Create Func creates and exposes an IFunc
delegate. It works like ActionNode but includes a return value. When invoked, it executes the connected control flow from the invoke port and returns a value through the delegate.
Input Ports
- return : The value to be returned when the delegate is invoked.
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
IFunc
. -
delegate : The
IFunc
delegate instance. -
parameters : Outputs corresponding to the parameters of the
IFunc
delegate.