Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/Particles > API/Runtime/Engine/Particles/FParticleSystemWorldManagerTickF-
- FTickFunction::ExecuteTick()
- FParticleSystemWorldManagerTickFunction::ExecuteTick()
References
Module | Engine |
Header | /Engine/Source/Runtime/Engine/Classes/Particles/ParticleSystemManager.h |
Include | #include "Particles/ParticleSystemManager.h" |
Source | /Engine/Source/Runtime/Engine/Private/Particles/ParticleSystemManager.cpp |
virtual void ExecuteTick
(
float DeltaTime,
ELevelTick TickType,
ENamedThreads::Type CurrentThread,
const FGraphEventRef & MyCompletionGraphEvent
)
Remarks
Abstract function actually execute the tick. Batched tick managers should use ExecuteNestedTick
Parameters
Name | Description |
---|---|
DeltaTime | frame time to advance, in seconds |
TickType | kind of tick for this frame |
CurrentThread | thread we are executing on, useful to pass along as new tasks are created |
MyCompletionGraphEvent | completion event for this task. Useful for holding the completetion of this task until certain child tasks are complete. |