Verse API reference page for the button_loud class
Text button with big and loud styling applied.
Verse using statement |
using { /Fortnite.com/UI } |
Inheritance Hierarchy
This class is derived from the following hierarchy, starting with widget:
| Name | Description |
|---|---|
widget |
Base class for all UI elements drawn on the player's screen. |
text_button_base |
Button with text message common base class. Displays a button with a custom message string. |
Members
This class has both data members and functions.
Data
| Data Member Name | Type | Description |
|---|---|---|
DefaultText |
message |
The text to display to the user. Used only during initialization of the widget and not modified by SetText. |
Functions
| Function Name | Description |
|---|---|
GetParentWidget |
Returns the widget's parent widget. Fails if no parent exists, such as if this widget is not in the player_ui or is itself the root widget. |
GetRootWidget |
Returns the widget that added this widget to the player_ui. The root widget will return itself. Fails if this widget is not in the player_ui. |
GetText |
Gets the text currently in the widget. |
GetVisibility |
Returns the current widget_visibility state. |
IsEnabled |
true if this widget can be modified interactively by the player. |
OnClick |
Subscribable event that fires when the button is clicked. |
SetEnabled |
Enables or disables whether the player can interact with this widget. |
SetText |
Sets the text displayed in the widget. |
SetVisibility |
Shows or hides the widget without removing itself from the containing player_ui. See widget_visibility for details. |