Unit Reference ActionInvokeNode - RealityStop/Bolt.Addons.Community GitHub Wiki
The Invoke Action is a node that invokes a delegate implementing IAction. It takes input parameters defined by the delegate and calls its Invoke method. This node does not return a value, and it is used to trigger actions dynamically in a visual scripting graph.
Input Ports
- enter : Control flow entry point. The node executes the action when this port is triggered.
- delegate : The IAction delegate to invoke.
- parameters : Inputs corresponding to the delegate’s parameters.
Output Ports
- exit : Control flow output triggered after the delegate has been invoked.