DeferredTask::GetTaskFlags
Defined in:
Returns the task flags.
C4Time.h
Prototype
uint32 GetTaskFlags(void) const;
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. |
See Also