UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
ClothingAssetCustomVersion.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "Misc/Guid.h"
7
8// Custom serialization version for clothing assets
10{
11 enum Type
12 {
13 // Before any version changes were made
15 // Added storage of vertex colors with sim data, for editor usage
17 // Changed memory layouts by moving some properties to base classes
19
20 // -----<new versions can be added above this line>-------------------------------------------------
23 };
24
25 // The GUID for this custom version number
26 const static FGuid GUID;
27
28private:
30};
Definition ClothingAssetCustomVersion.h:10
static const FGuid GUID
Definition ClothingAssetCustomVersion.h:26
Type
Definition ClothingAssetCustomVersion.h:12
@ LatestVersion
Definition ClothingAssetCustomVersion.h:22
@ VersionPlusOne
Definition ClothingAssetCustomVersion.h:21
@ BeforeCustomVersionWasAdded
Definition ClothingAssetCustomVersion.h:14
@ MovePropertiesToCommonBaseClasses
Definition ClothingAssetCustomVersion.h:18
@ AddVertexColorsToPhysicalMesh
Definition ClothingAssetCustomVersion.h:16
Definition Guid.h:109