![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <NotificationManager.h>
Base class for any handlers that display progress bars for progres notifications
|
inlinevirtual |
|
pure virtual |
Called when a notification should be cancelled
|
pure virtual |
Called when a progress notification begins
| Handle | Handle to the notification |
| DisplayText | Display text used to describe the type of work to the user |
| TotalWorkToDo | Arbitrary number of work units to perform. |
|
pure virtual |
Called when a notification should be updated.
| InHandle | Handle to the notification that was previously created with StartProgressNotification |
| TotalWorkDone | The total number of work units done for the notification. |
| UpdatedTotalWorkToDo | UpdatedTotalWorkToDo. This value will be 0 if the total work did not change |
| UpdatedDisplayText | Updated display text of the notification. This value will be empty if the text did not change |