Tala Esenlikler

FInteractionRuntimeTargetFocusedPointChangedSignature

FInteractionRuntimeTargetFocusedPointChangedSignature is a Blueprint-compatible delegate for Interaction Framework runtime events.

Interaction Framework 1.0.0 UE5.8 Delegate

FInteractionRuntimeTargetFocusedPointChangedSignature is a Blueprint-compatible delegate for Interaction Framework runtime events.

Module InteractionFrameworkRuntime
Category runtime
DECLARE_DYNAMIC_MULTICAST_DELEGATE_FourParams( FInteractionRuntimeTargetFocusedPointChangedSignature, UInteractionRuntimeInteractorComponent*, Interactor, bool, bHasFocus, FInteractionRuntimePointId, PreviousPointId, FInteractionRuntimePointId, NewPointId);

Parameters

Inputs
bHasFocus
bool

True when this target is now focused by the interactor.

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.

Related Docs