Nakatomi/Source/Nakatomi/GetDistanceToPlayerTask.h

34 lines
821 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "BehaviorTree/BTTaskNode.h"
#include "GetDistanceToPlayerTask.generated.h"
/**
*
*/
UCLASS()
class NAKATOMI_API UGetDistanceToPlayerTask : public UBTTaskNode
{
GENERATED_BODY()
private:
UPROPERTY()
UBehaviorTreeComponent* behaviourTreeOwner = nullptr;
UPROPERTY(EditAnywhere, Meta = (AllowPrivateAccess = "true"))
FBlackboardKeySelector TargetActor;
UPROPERTY(EditAnywhere, Meta = (AllowPrivateAccess = "true"))
float DistanceThreshold = 5.0f;
public:
UGetDistanceToPlayerTask();
virtual EBTNodeResult::Type ExecuteTask(UBehaviorTreeComponent& owner, uint8* memory) override;
virtual EBTNodeResult::Type AbortTask(UBehaviorTreeComponent& owner, uint8* memory) override;
};