Unit Reference FuncNode - RealityStop/Bolt.Addons.Community GitHub Wiki
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
IFuncdelegate instance. -
parameters : Outputs corresponding to the parameters of the
IFuncdelegate.