Navigation
API > API/Runtime > API/Runtime/Engine
Enum used to determine the current ticking rules for an object, this can change after creation.
| Name | ETickableTickType |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Public/Tickable.h |
| Include Path | #include "Tickable.h" |
Syntax
enum ETickableTickType
{
Conditional,
Always,
Never,
NewObject,
}
Values
| Name | Remarks |
|---|---|
| Conditional | Use IsTickable to determine whether to tick |
| Always | Always tick the object |
| Never | Never tick the object, do not add to tickables array |
| NewObject | Unknown state, true for newly registered objects that have not yet called GetTickableTickType |