Tala Esenlikler

FInteractionRuntimeDebouncedSaveExportDelegate

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

Interaction Framework 1.0.0 UE5.8 Delegate

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

Module InteractionFrameworkRuntime
Category save
DECLARE_DYNAMIC_DELEGATE_ThreeParams( FInteractionRuntimeDebouncedSaveExportDelegate, UObject*, SnapshotStorage, int32, SaveRevision, bool, bSuccess);

Parameters

Inputs
SnapshotStorage
UObject*

Storage object that received the debounced export request.

SaveRevision
int32

Save revision exported by the debounced operation.

bSuccess
bool

True when export to the storage object completed successfully.

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