Files
UnrealEngine/Engine/Plugins/Interchange/Runtime/Source/Pipelines/Public/InterchangePipelineObjectVersion.h
2025-05-18 13:04:45 +08:00

26 lines
718 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Misc/Guid.h"
struct FFortniteMainInterchangePipelineObjectVersion
{
// Not instantiable.
FFortniteMainInterchangePipelineObjectVersion() = delete;
enum Type
{
InitialVersion,
// Interchange Move generic animation pipeline property bAddCurveMetadataToSkeleton to the generic shared skeletalmesh and animation pipeline
InterchangeAddCurveMetadataToSkeletonPropertyMove,
// -----<new versions can be added above this line>-------------------------------------------------
VersionPlusOne,
LatestVersion = VersionPlusOne - 1
};
// The GUID for this custom version number
INTERCHANGEPIPELINES_API const static FGuid GUID;
};