Files
guillaume arruda 7c67c89076 Create StateTreeMoveToTask wrapping a UAITask_MoveTo allowing state tree to move AI using the same framework as BehaviorTree
Create the FStateTreeAITaskBase & FStateTreeAIActionTaskBase state tree task namespace for AI focused ST task
#rb mikko.mononen

[CL 32496289 by guillaume arruda in 5.4 branch]
2024-03-26 00:33:23 -04:00

21 lines
535 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "StateTreeTaskBase.h"
#include "StateTreeAITask.generated.h"
// Base class of all AI task that expect to be run on an AIController or derived class
USTRUCT(meta= (Hidden, Category = "AI"))
struct FStateTreeAITaskBase : public FStateTreeTaskBase
{
GENERATED_BODY()
};
// Base class of all AI task that do a physical action
USTRUCT(meta = (Hidden, Category="AI|Action"))
struct FStateTreeAIActionTaskBase : public FStateTreeAITaskBase
{
GENERATED_BODY()
};