UGameplayTask::EndTask

Called explicitly to end the task (usually by the task itself).

Choose your operating system:

Windows

macOS

Linux

References

Module

GameplayTasks

Header

/Engine/Source/Runtime/GameplayTasks/Classes/GameplayTask.h

Include

#include "GameplayTask.h"

Source

/Engine/Source/Runtime/GameplayTasks/Private/GameplayTask.cpp

Syntax

void EndTask()

Remarks

Called explicitly to end the task (usually by the task itself). Calls OnDestroy. @note you need to call EndTask before sending out any "on completed" delegates. If you don't the task will still be in an "active" state while the event receivers may assume it's already "finished"