LEAP Documentation 40220
Documentation for the LEAP project
BTService_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/BTService.h"
7#include "BTService_UpdateMoveWaypoint.generated.h"
8
9UCLASS()
10class PROJECTX_API UBTService_UpdateMoveWaypoint : public UBTService
11{
12 GENERATED_BODY()
13
15
17 UPROPERTY(Category = Blackboard, EditAnywhere)
18 struct FBlackboardKeySelector BlackboardWaypointTargetLocation;
19
20 virtual void TickNode(UBehaviorTreeComponent& OwnerComp, uint8* NodeMemory, float DeltaSeconds) override;
21 virtual void InitializeFromAsset(UBehaviorTree& Asset) override;
22 virtual FString GetStaticDescription() const override;
23
24};
Definition: BTService_UpdateMoveWaypoint.h:11