Navigation
API > API/Editor > API/Editor/UnrealEd
Inheritance Hierarchy
- FTickableObjectBase
- FTickableCookObject
References
| Module | UnrealEd |
| Header | /Engine/Source/Editor/UnrealEd/Public/TickableEditorObject.h |
| Include | #include "TickableEditorObject.h" |
Syntax
class FTickableCookObject : public FTickableObjectBase
Remarks
The same as FTickableEditorObject, but for systems that need to be ticked periodically during cooking. If a system needs to be cooked both during cook commandlet and in editor without the cook commandlet, it should dual-inherit from both FTickableCookObject and FTickableEditorObject.
Constructors
| Type | Name | Description | |
|---|---|---|---|
| Registers this instance with the static array of tickable objects. |
Destructors
| Type | Name | Description | |
|---|---|---|---|
| Removes this instance from the static array of tickable objects. |
Functions
| Type | Name | Description | |
|---|---|---|---|
| void | TickCook
(
float DeltaTime, |
Cook tick virtual, must be implemented in subclass | |
| void | TickObjects
(
const float DeltaSeconds, |
Calls TickCook on every enabled tickable object | |
Constants
| Name | Description |
|---|---|
| ObjectBeingTicked | Set if we are in the Tick function for an editor tickable object |