UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
ExternalPhysicsMaterialCustomObjectVersion.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 to physics materials
9{
10 enum Type
11 {
12 // Before any version changes were made
14
15 // Added material masks to Chaos
17
18 // -----<new versions can be added above this line>-------------------------------------------------
21 };
22
23 // The GUID for this custom version number
24 CORE_API const static FGuid GUID;
25
26private:
28};
29
30
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition ExternalPhysicsMaterialCustomObjectVersion.h:9
CORE_API static const FGuid GUID
Definition ExternalPhysicsMaterialCustomObjectVersion.h:24
Type
Definition ExternalPhysicsMaterialCustomObjectVersion.h:11
@ AddedMaterialMasks
Definition ExternalPhysicsMaterialCustomObjectVersion.h:16
@ VersionPlusOne
Definition ExternalPhysicsMaterialCustomObjectVersion.h:19
@ BeforeCustomVersionWasAdded
Definition ExternalPhysicsMaterialCustomObjectVersion.h:13
@ LatestVersion
Definition ExternalPhysicsMaterialCustomObjectVersion.h:20
Definition Guid.h:109