Ark Server API (ASA) - Wiki
|
#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.
Definition at line 19 of file AsyncTaskNotification.h.
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)
Definition at line 40 of file AsyncTaskNotification.h.
Should this notification be "headless"? (ie, not display any UI)
Definition at line 37 of file AsyncTaskNotification.h.
TAttribute<bool> FAsyncTaskNotificationConfig::bKeepOpenOnFailure = false |
Keep this notification open on failure? Will show an close button (attribute queried from the game thread)
Definition at line 46 of file AsyncTaskNotification.h.
TAttribute<bool> FAsyncTaskNotificationConfig::bKeepOpenOnSuccess = false |
Keep this notification open on success? Will show a close button (attribute queried from the game thread)
Definition at line 43 of file AsyncTaskNotification.h.
float FAsyncTaskNotificationConfig::ExpireDuration = 1.0f |
The duration before a fadeout for the notification
Definition at line 34 of file AsyncTaskNotification.h.
float FAsyncTaskNotificationConfig::FadeInDuration = 0.5f |
The fade in duration of the notification
Definition at line 28 of file AsyncTaskNotification.h.
float FAsyncTaskNotificationConfig::FadeOutDuration = 2.0f |
The fade out duration of the notification
Definition at line 31 of file AsyncTaskNotification.h.
const FSlateBrush* FAsyncTaskNotificationConfig::Icon = nullptr |
The icon image to display next to the text, or null to use the default icon
Definition at line 49 of file AsyncTaskNotification.h.
const FLogCategoryBase* FAsyncTaskNotificationConfig::LogCategory = nullptr |
Category this task should log its notifications under, or null to skip logging
Definition at line 52 of file AsyncTaskNotification.h.
FText FAsyncTaskNotificationConfig::ProgressText |
The progress text displayed in the notification (if any)
Definition at line 25 of file AsyncTaskNotification.h.
FText FAsyncTaskNotificationConfig::TitleText |
The title text displayed in the notification
Definition at line 22 of file AsyncTaskNotification.h.