Navigation
API > API/Runtime > API/Runtime/GameplayTasks
| |
|
| Name |
ETaskResourceOverlapPolicy |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/GameplayTasks/Classes/GameplayTask.h |
| Include Path |
#include "GameplayTask.h" |
Syntax
enum ETaskResourceOverlapPolicy
{
StartOnTop,
StartAtEnd,
RequestCancelAndStartOnTop,
RequestCancelAndStartAtEnd,
}
Values
| Name |
Remarks |
| StartOnTop |
Pause overlapping same-priority tasks. |
| StartAtEnd |
Wait for other same-priority tasks to finish. |
| RequestCancelAndStartOnTop |
Request to cancel same or lower priority tasks, if tasks not ended pause overlapping same-priority tasks. |
| RequestCancelAndStartAtEnd |
Request to cancel same or lower priority tasks, wait for any remaining overlapping same-priority tasks to finish. |