Navigation
Unreal Engine C++ API Reference > Runtime > Core > Misc > FSlowTask > FSlowTask
References
Module | Core |
Header | /Engine/Source/Runtime/Core/Public/Misc/SlowTask.h |
Include | #include "Misc/SlowTask.h" |
Source | /Engine/Source/Runtime/Core/Private/Misc/SlowTask.cpp |
FSlowTask
(
float InAmountOfWork,
const FText & InDefaultMessage,
bool bInEnabled,
FFeedbackContext & InContext
)
Remarks
Construct this scope from an amount of work to do, and a message to display
Parameters
Name | Description |
---|---|
InAmountOfWork | Arbitrary number of work units to perform (can be a percentage or number of steps). 0 indicates that no progress frames are to be entered in this scope (automatically enters a frame encompassing the entire scope) |
InDefaultMessage | A message to display to the user to describe the purpose of the scope |
bInVisible | When false, this scope will have no effect. Allows for proper scoped objects that are conditionally hidden. |