Navigation
API > API/Runtime > API/Runtime/Engine
References
| Module | Engine |
| Header | /Engine/Source/Runtime/Engine/Public/Tickable.h |
| Include | #include "Tickable.h" |
Syntax
enum ETickableTickType
{
Conditional,
Always,
Never,
}
Values
| Name | Description |
|---|---|
| Conditional | Use IsTickable to determine whether to tick |
| Always | Always tick the object |
| Never | Never tick the object, do not add to tickables array |
Remarks
Enum used to convey whether a tickable object will always tick, conditionally tick, or never tick.