![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <AsyncTaskNotification.h>
Public Attributes | |
| FText | TitleText |
| FText | ProgressText |
| float | FadeInDuration = 0.5f |
| float | FadeOutDuration = 2.0f |
| float | ExpireDuration = 1.0f |
| bool | bIsHeadless = false |
| TAttribute< bool > | bCanCancel = false |
| TAttribute< bool > | bKeepOpenOnSuccess = false |
| TAttribute< bool > | bKeepOpenOnFailure = false |
| const FSlateBrush * | Icon = nullptr |
| const FLogCategoryBase * | LogCategory = nullptr |
Configuration data for initializing an asynchronous task notification.
| TAttribute<bool> FAsyncTaskNotificationConfig::bCanCancel = false |
Can this task be canceled? Will show a cancel button for in-progress tasks (attribute queried from the game thread)
Should this notification be "headless"? (ie, not display any UI)
| TAttribute<bool> FAsyncTaskNotificationConfig::bKeepOpenOnFailure = false |
Keep this notification open on failure? Will show an close button (attribute queried from the game thread)
| TAttribute<bool> FAsyncTaskNotificationConfig::bKeepOpenOnSuccess = false |
Keep this notification open on success? Will show a close button (attribute queried from the game thread)
| float FAsyncTaskNotificationConfig::ExpireDuration = 1.0f |
The duration before a fadeout for the notification
| float FAsyncTaskNotificationConfig::FadeInDuration = 0.5f |
The fade in duration of the notification
| float FAsyncTaskNotificationConfig::FadeOutDuration = 2.0f |
The fade out duration of the notification
| const FSlateBrush* FAsyncTaskNotificationConfig::Icon = nullptr |
The icon image to display next to the text, or null to use the default icon
| const FLogCategoryBase* FAsyncTaskNotificationConfig::LogCategory = nullptr |
Category this task should log its notifications under, or null to skip logging
| FText FAsyncTaskNotificationConfig::ProgressText |
The progress text displayed in the notification (if any)
| FText FAsyncTaskNotificationConfig::TitleText |
The title text displayed in the notification