C4 Engine
C4 Engine API Documentation

DeferredTask::GetTaskFlags

Defined in:  C4Time.h
Returns the task flags.
Prototype

uint32 GetTaskFlags(voidconst;

Description
The GetTaskFlags function returns the task flags, which can be a combination (through logical OR) of the following constants.
kTaskNonpersistent The task is nonpersistent. If this flag is set, then the task is automatically destroyed after it is triggered.
kTaskRepeating The task will be triggered repeatedly (at most once per frame). If this flag is set, then the task is not removed from the Time Manager when it is triggered.
The initial value of the task flags is 0.
See Also

DeferredTask::SetTaskFlags