Tala Esenlikler
Prompt Blueprint Library

TryGetControlEntryPresentationByTag

Finds the first control entry with the supplied control tag.

Interaction Framework 1.0.0 UE5.7 Function UInteractionUIPromptBlueprintLibrary

Finds the first control entry with the supplied control tag.

Use this read path when get control entry presentation by tag from UInteractionUIPromptBlueprintLibrary. Check the return value before using OutEntry.

Owner UInteractionUIPromptBlueprintLibrary
Module InteractionFrameworkUI
Category InteractionUI|Prompt
UFUNCTION(BlueprintPure, Category = "InteractionUI|Prompt")
static bool TryGetControlEntryPresentationByTag( const FInteractionUISurfaceProjection& SurfaceProjection, FName ControlTag, FInteractionUIEntryPresentation& OutEntry);

Parameters

Inputs
ControlTag
FName

Control tag to find in the projection data.

Outputs

Return Value

bool

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

Use Cases

  • Read control entry presentation by tag and handle the missing-data case explicitly.

Related Docs