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
SetHintTextfunction updates the internal state of the widget with the provided title and text.Both
TitleandTextproperties are marked asBlueprintReadOnly, meaning they can be accessed in Blueprints but cannot be modified directly from them.
22 May 2026