Files
UnrealEngineUWP/Engine/Source/Runtime/AnimGraphRuntime/Public/AnimationCustomVersion.h
2015-07-13 19:53:41 -04:00

31 lines
963 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
// Custom serialization version for assets/classes in the AnimGraphRuntime and AnimGraph modules
struct ANIMGRAPHRUNTIME_API FAnimationCustomVersion
{
enum Type
{
// Before any version changes were made in the plugin
BeforeCustomVersionWasAdded = 0,
// Added support for one-to-many component mappings to FAnimNode_BoneDrivenController,
// changed the range to apply to the input, and added a configurable method for updating the components
BoneDrivenControllerMatchingMaya = 1,
// Converted the range clamp into a remap function, rather than just clamping
BoneDrivenControllerRemapping = 2,
// -----<new versions can be added above this line>-------------------------------------------------
VersionPlusOne,
LatestVersion = VersionPlusOne - 1
};
// The GUID for this custom version number
const static FGuid GUID;
private:
FAnimationCustomVersion() {}
};