Navigation
API > API/Runtime > API/Runtime/Slate
| |
|
| Name |
ESlateTickType |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Slate/Public/Framework/Application/SlateApplication.h |
| Include Path |
#include "Framework/Application/SlateApplication.h" |
Syntax
enum ESlateTickType
{
Time = 1 << 0,
PlatformAndInput = 1 << 1,
Widgets = 1 << 2,
TimeAndWidgets = Time | Widgets,
All = Time | PlatformAndInput | Widgets,
}
Values
| Name |
Remarks |
| Time |
Tick time only |
| PlatformAndInput |
Only process input for the platform, and additional input tasks by Slate. |
| Widgets |
Only Tick and Paint Widgets |
| TimeAndWidgets |
Time and Widgets |
| All |
Update time, tick and paint widgets, and process input |