Files
2025-05-18 13:04:45 +08:00

24 lines
613 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "MassEntityTraitBase.h"
#include "MassSmoothOrientationFragments.h"
#include "MassSmoothOrientationTrait.generated.h"
#define UE_API MASSNAVIGATION_API
UCLASS(MinimalAPI, meta = (DisplayName = "Smooth Orientation"))
class UMassSmoothOrientationTrait : public UMassEntityTraitBase
{
GENERATED_BODY()
protected:
UE_API virtual void BuildTemplate(FMassEntityTemplateBuildContext& BuildContext, const UWorld& World) const override;
UPROPERTY(EditAnywhere, Category="")
FMassSmoothOrientationParameters Orientation;
};
#undef UE_API