Create Clear Focus Task
This commit is contained in:
parent
408954c96d
commit
dcd292cb48
|
@ -1,5 +1,13 @@
|
|||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
|
||||
#include "Tasks/BTTClearFocus.h"
|
||||
#include "../Tasks/BTTClearFocus.h"
|
||||
|
||||
#include "Nakatomi/EnemyAIController.h"
|
||||
|
||||
EBTNodeResult::Type UBTTClearFocus::ExecuteTask(UBehaviorTreeComponent& owner, uint8* memory)
|
||||
{
|
||||
auto enemyController = Cast<AEnemyAIController>(owner.GetAIOwner());
|
||||
enemyController->ClearFocus(EAIFocusPriority::Default);
|
||||
return EBTNodeResult::Succeeded;
|
||||
}
|
||||
|
|
|
@ -13,5 +13,8 @@ UCLASS()
|
|||
class NAKATOMI_API UBTTClearFocus : public UBTTaskNode
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
||||
public:
|
||||
virtual EBTNodeResult::Type ExecuteTask(UBehaviorTreeComponent& owner, uint8* memory) override;
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue