LEAP Documentation 40220
Documentation for the LEAP project
ProjectXAITask_MoveTo.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 "Tasks/AITask_MoveTo.h"
7#include "ProjectXAITask_MoveTo.generated.h"
8
9UCLASS()
10class PROJECTX_API UProjectXAITask_MoveTo : public UAITask_MoveTo
11{
12 GENERATED_BODY()
13
14 virtual void PerformMove() override;
15 void OnRequestFinished(FAIRequestID RequestID, const FPathFollowingResult& Result) override;
16
17 bool bFailedPathedMove = false;
18 FVector StartingPosition = FVector::ZeroVector;
19};
Definition: ProjectXAITask_MoveTo.h:11