LEAP Documentation 40220
Documentation for the LEAP project
BTTask_UpdateMoveWaypoint.h
Go to the documentation of this file.
1// Copyright Blue Isle Studios Inc 2022. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "BehaviorTree/BTTaskNode.h"
7#include "BTTask_UpdateMoveWaypoint.generated.h"
8
9UCLASS()
10class PROJECTX_API UBTTask_UpdateMoveWaypoint : public UBTTaskNode
11{
12 GENERATED_BODY()
13
15
17 UPROPERTY(Category = Blackboard, EditAnywhere)
18 struct FBlackboardKeySelector BlackboardWaypointTargetLocation;
19
20 virtual EBTNodeResult::Type ExecuteTask(UBehaviorTreeComponent& OwnerComp, uint8* NodeMemory) override;
21 virtual void InitializeFromAsset(UBehaviorTree& Asset) override;
22
23};
Definition: BTTask_UpdateMoveWaypoint.h:11