Tala Esenlikler
Prompt Blueprint Library

TryGetEntryPresentationByIdFromProjectionBundle

Finds a surface or control entry by id inside a projection bundle.

Interaction Framework 1.0.0 UE5.8 Function UInteractionUIPromptBlueprintLibrary

Finds a surface or control entry by id inside a projection bundle.

Use this read path when get entry presentation by id from projection bundle from UInteractionUIPromptBlueprintLibrary. Check the return value before using OutEntry.

Owner UInteractionUIPromptBlueprintLibrary
Module InteractionFrameworkUI
Category InteractionUI|Prompt
UFUNCTION(BlueprintPure, Category = "InteractionUI|Prompt")
static bool TryGetEntryPresentationByIdFromProjectionBundle( const FInteractionUIProjectionBundle& Projection, FName EntryId, FInteractionUIEntryPresentation& OutEntry);

Parameters

Inputs
EntryId
FName

Entry id to find in the projection data.

Outputs

Return Value

bool

True when OutEntry was found and written to the output parameter.

Use Cases

  • Read entry presentation by id from projection bundle and handle the missing-data case explicitly.

Related Docs