Tala Esenlikler
Prompt Blueprint Library

SuppressInteractionPrompts

Suppresses all generated interaction prompts and prompt-driven input for the local player resolved from context.

Interaction Framework 1.0.0 UE5.7 Function UInteractionUIPromptBlueprintLibrary

Convenience Blueprint helper that resolves the local player UI manager and suppresses all generated interaction prompts and prompt-driven input.

Use it from widgets or UI-owned Blueprint graphs without manually fetching the local player subsystem.

Owner UInteractionUIPromptBlueprintLibrary
Module InteractionFrameworkUI
Category InteractionUI|Prompt
UFUNCTION(BlueprintCallable, Category = "InteractionUI|Prompt", meta = (WorldContext = "WorldContextObject"))
static bool SuppressInteractionPrompts(const UObject* WorldContextObject, FName Reason);

Parameters

Inputs
WorldContextObject
const UObject*

Context used to resolve the local player UI manager.

Reason
FName

Local ownership key, such as Inventory, Inspection, ModalFlow, or Cinematic.

Return Value

bool

True when a UI manager was resolved and suppression was applied.

Use Cases

  • Control generated interaction prompt presentation from local UI flow.

Related Docs