Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/FTaskSyncManager
Description
Creates (but does not dispatch) a simple task that will execute a tick function. The caller is responsible for dispatching the task and must keep the tick function valid until the task completes. This is useful for cases where you want to spawn a tick halfway through a tick group If default delta time is passed, it will try to use the currently ticking world's info
| Name | CreateManualTickTask |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/TaskSyncManager.h |
| Include Path | #include "TaskSyncManager.h" |
| Source | /Engine/Source/Runtime/Engine/Private/TaskSyncManager.cpp |
FGraphEventRef CreateManualTickTask
(
FWorldContextId WorldContext,
FTickFunction * TickFunction,
float DeltaTime,
ELevelTick TickType
)