Navigation
Unreal Engine C++ API Reference > Developer > AITestSuite > BehaviorTree
Inheritance Hierarchy
- UObjectBase
- UObjectBaseUtility
- UObject
- UBTNode
- UBTAuxiliaryNode
- UBTService
- UTestBTService_Log
References
Module | AITestSuite |
Header | /Engine/Source/Developer/AITestSuite/Classes/BehaviorTree/TestBTService_Log.h |
Include | #include "BehaviorTree/TestBTService_Log.h" |
Syntax
class UTestBTService_Log : public UBTService
Remarks
Copyright Epic Games, Inc. All Rights Reserved.
Variables
Type | Name | Description | |
---|---|---|---|
![]() |
bool | bToggleValue | |
![]() |
FName | KeyNameBecomeRelevant | |
![]() |
FName | KeyNameCeaseRelevant | |
![]() |
FName | KeyNameTick | |
![]() |
int32 | LogActivation | |
![]() |
int32 | LogDeactivation | |
![]() |
int32 | LogTick |
Constructors
Type | Name | Description | |
---|---|---|---|
![]() |
UTestBTService_Log
(
const FObjectInitializer& ObjectInitializer |
Functions
Type | Name | Description | |
---|---|---|---|
![]() |
void | SetFlagOnTick
(
FName InKeyNameTick, |
Overridden from UBTAuxiliaryNode
Type | Name | Description | |
---|---|---|---|
![]() ![]() |
void | OnBecomeRelevant
(
UBehaviorTreeComponent& OwnerComp, |
Called when auxiliary node becomes active this function should be considered as const (don't modify state of object) if node is not instanced! bNotifyBecomeRelevant must be set to true for this function to be called Calling INIT_AUXILIARY_NODE_NOTIFY_FLAGS in the constructor of the node will set this flag automatically |
![]() ![]() |
void | OnCeaseRelevant
(
UBehaviorTreeComponent& OwnerComp, |
Called when auxiliary node becomes inactive this function should be considered as const (don't modify state of object) if node is not instanced! bNotifyCeaseRelevant must be set to true for this function to be called Calling INIT_AUXILIARY_NODE_NOTIFY_FLAGS in the constructor of the node will set this flag automatically |
![]() ![]() |
void | TickNode
(
UBehaviorTreeComponent& OwnerComp, |
Update next tick interval 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_SERVICE_NODE_NOTIFY_FLAGS in the constructor of the service will set this flag automatically |