Limen Framework 0.1 Help

ULimenHintWidget

Overview

ULimenHintWidget is a subclass of ULimenWidget designed to display hints. It provides a simple interface to set the title and text of the hint, which can be accessed via BlueprintReadOnly properties.

Properties

Type

Name

Access

Description

FText

Title

BlueprintReadOnly

The title of the hint.

FText

Text

BlueprintReadOnly

The text content of the hint.

Functions

Return Type

Signature

Description

void

SetHintText(const FText& InTitle, const FText& InText)

Sets the title and text of the hint.

Usage & Implementation Notes

  • The SetHintText function updates the internal state of the widget with the provided title and text.

  • Both Title and Text properties are marked as BlueprintReadOnly, meaning they can be accessed in Blueprints but cannot be modified directly from them.

22 May 2026