-
Notifications
You must be signed in to change notification settings - Fork 37
Unit Reference ActionInvokeNode
S2NX7 edited this page Sep 30, 2025
·
4 revisions
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.