Navigation
API > API/Runtime > API/Runtime/UMG > API/Runtime/UMG/Extensions
Inheritance Hierarchy
- UObject
- UUserWidgetExtension
References
| Module | UMG |
| Header | /Engine/Source/Runtime/UMG/Public/Extensions/UserWidgetExtension.h |
| Include | #include "Extensions/UserWidgetExtension.h" |
Syntax
UCLASS (Abstract, DefaultToInstanced, Within=UserWidget, MinimalAPI)
class UUserWidgetExtension : public UObject
Remarks
UserWidgetExtension is the base class for components that define reusable behavior that can be added to different types of Widgets.
Functions
| Type | Name | Description | |
|---|---|---|---|
| void | Construct () |
Extend the UUserWidget::Construct function | |
| void | Destruct () |
Extend the UUserWidget::Destruct function | |
| UUserWidget * | |||
| void | Initialize () |
Extend the UUserWidget::Initialize function | |
| bool | RequiresTick () |
Does the extension requires tick. | |
| void | Tick
(
const FGeometry& MyGeometry, |
Extend the UUserWidget::Tick function. |