Tala Esenlikler

FInteractionRuntimeRouteProgressSnapshot

Snapshot of route progress exported to Blueprint and UI code.

Interaction Framework 1.0.0 UE5.8 Struct InteractionRouteTypes.h

Snapshot of route progress exported to Blueprint and UI code.

Module InteractionFrameworkAPI
Category multi
USTRUCT(BlueprintType)
struct INTERACTIONFRAMEWORKAPI_API FInteractionRuntimeRouteProgressSnapshot

Properties

Route Progress Snapshot

Route Identity

Identity of the route represented by this snapshot. Use cases: - Match progress to the correct prompt row. - Ignore progress from routes that are not currently focused.

FInteractionRuntimeRouteIdentity
Route Progress Snapshot

Pattern

Input pattern currently driving route progress. Use cases: - Choose between hold-fill, tap-count, and instant prompt visuals. - Explain the required input action in a Blueprint widget.

EInteractionRuntimeInputPattern
Route Progress Snapshot

Progress Current

Current raw progress value. Use cases: - Divide by ProgressThreshold to draw custom normalized meters. - Show "3 / 5 taps" when the pattern uses discrete counts.

float
Route Progress Snapshot

Progress Threshold

Raw value required for completion. Use cases: - Use as hold duration in seconds or required tap count depending on Pattern. - Hide numeric progress when the threshold is zero.

float
Route Progress Snapshot

Current Participants

Number of participants currently in the route. Use cases: - Display "1 / 2" while waiting for another player. - Gate local UI effects until at least one participant has joined.

int32
Route Progress Snapshot

Required Participants

Number of participants required before the route can execute. Use cases: - Build participant count text for group prompts. - Detect whether the route is single-player or multi-player from Blueprint.

int32
Route Progress Snapshot

Quorum Reached

True once CurrentParticipants satisfies RequiredParticipants. Use cases: - Switch prompt text from "waiting" to "hold to complete". - Trigger Blueprint feedback when the last required participant joins.

bool

Related Docs