FInteractionRuntimeTargetFocusedPointChangedSignature is a Blueprint-compatible delegate for Interaction Framework runtime events.
DECLARE_DYNAMIC_MULTICAST_DELEGATE_FourParams( FInteractionRuntimeTargetFocusedPointChangedSignature, UInteractionRuntimeInteractorComponent*, Interactor, bool, bHasFocus, FInteractionRuntimePointId, PreviousPointId, FInteractionRuntimePointId, NewPointId);
Parameters
Inputs
Interactor
Interactor whose focus changed.
bHasFocus
True when this target is now focused by the interactor.
PreviousPointId
Point focused before the change.
NewPointId
Point focused after the change.
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.