FInteractionRuntimeTargetCommandEventSignature is a Blueprint-compatible delegate for Interaction Framework runtime events.
DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FInteractionRuntimeTargetCommandEventSignature, const FInteractionCommandEventContext&, Event);
Parameters
Inputs
Event
Command event context containing target, point, command, participant, and outcome data.
Use Cases
- Bind Blueprint event handlers to react to runtime interaction changes without polling.
Notes
- Delegate parameters are supplied by the broadcaster; handlers should treat object pointers as runtime references.