Navigation
API > API/Runtime > API/Runtime/Core
Enum to specify a particular slow task section should be shown
| Name | ESlowTaskVisibility |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/SlowTask.h |
| Include Path | #include "Misc/SlowTask.h" |
Syntax
enum ESlowTaskVisibility
{
Default,
ForceVisible,
Important,
Invisible,
}
Values
| Name | Remarks |
|---|---|
| Default | Default visibility (inferred by some heuristic of remaining work/time open) |
| ForceVisible | Ignore the required minimum visible time and non-empty text requirement |
| Important | Force this particular slow task to be visible on the UI, overriding tasks if there is no space in ascending order of recency (newest tasks at the bottom first) |
| Invisible | Forcibly prevent this slow task from being shown, but still use it for work progress calculations |