Navigation
API > API/Developer > API/Developer/AITestSuite > API/Developer/AITestSuite/BehaviorTree
Inheritance Hierarchy
- UObjectBase
- UObjectBaseUtility
- UObject
- UBTNode
- UBTTaskNode
- UTestBTTask_BTStopAction
References
| Module | AITestSuite |
| Header | /Engine/Source/Developer/AITestSuite/Classes/BehaviorTree/TestBTTask_BTStopAction.h |
| Include | #include "BehaviorTree/TestBTTask_BTStopAction.h" |
Syntax
class UTestBTTask_BTStopAction : public UBTTaskNode
Variables
| Type | Name | Description | |
|---|---|---|---|
| int32 | LogIndex | ||
| TEnumAsByte< EBTNodeResult::Type > | LogResult | ||
| EBTTestStopAction | StopAction | ||
| EBTTestTaskStopTiming | StopTiming |
Constructors
| Type | Name | Description | |
|---|---|---|---|
UTestBTTask_BTStopAction
(
const FObjectInitializer& ObjectInitializer |
Overridden from UBTTaskNode
| Type | Name | Description | |
|---|---|---|---|
| EBTNodeResult::Type | AbortTask
(
UBehaviorTreeComponent& OwnerComp, |
Aborts this task, should return Aborted or InProgress (use FinishLatentAbort() when returning InProgress) this function should be considered as const (don't modify state of object) if node is not instanced! | |
| EBTNodeResult::Type | ExecuteTask
(
UBehaviorTreeComponent& OwnerComp, |
Starts this task, should return Succeeded, Failed or InProgress (use FinishLatentTask() when returning InProgress) this function should be considered as const (don't modify state of object) if node is not instanced! | |
| void | OnTaskFinished
(
UBehaviorTreeComponent& OwnerComp, |
Called when task execution is finished this function should be considered as const (don't modify state of object) if node is not instanced! bNotifyTaskFinished must be set to true for this function to be called Calling INIT_TASK_NODE_NOTIFY_FLAGS in the constructor of the task will set this flag automatically | |
| void | TickTask
(
UBehaviorTreeComponent& OwnerComp, |
Ticks this task this function should be considered as const (don't modify state of object) if node is not instanced! bNotifyTick must be set to true for this function to be called Calling INIT_TASK_NODE_NOTIFY_FLAGS in the constructor of the task will set this flag automatically |