UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
GeometryObjectVersion.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2#pragma once
3
4#include "CoreTypes.h"
5#include "Misc/Guid.h"
6
7// Custom serialization version for changes made in Private-Geometry stream
9{
10 enum Type
11 {
12 // Before any version changes were made
14 // Compress Geometry Cache Flipbooks to save disk space
16 // Fix for serializing in Mesh vertices for new DynamicMeshVertex layout
18 //Added support for explicit motion vectors
20 // -----<new versions can be added above this line>-------------------------------------------------
23 };
24
25 // The GUID for this custom version number
26 CORE_API const static FGuid GUID;
27
28private:
30};
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition GeometryObjectVersion.h:9
Type
Definition GeometryObjectVersion.h:11
@ VersionPlusOne
Definition GeometryObjectVersion.h:21
@ CompressGeometryCache
Definition GeometryObjectVersion.h:15
@ LatestVersion
Definition GeometryObjectVersion.h:22
@ BeforeCustomVersionWasAdded
Definition GeometryObjectVersion.h:13
@ DynamicMeshVertexLayoutChange
Definition GeometryObjectVersion.h:17
@ ExplicitMotionVectors
Definition GeometryObjectVersion.h:19
CORE_API static const FGuid GUID
Definition GeometryObjectVersion.h:26
Definition Guid.h:109