UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
FortniteValkyrieBranchObjectVersion.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2#pragma once
3
4#include "DevObjectVersion.h"
5#include "Containers/Map.h"
6
7// Custom serialization version for changes made in the //Fortnite/Dev-Valkyrie stream
9{
10 enum Type
11 {
12 // Before any version changes were made
14
15 // Added new serialization for AtomPrimitives
17
18 // Removing FAtomColor struct, now only using the color id.
20
21 // switch the physics implicit objects unique/shared ptrs to be ref counted
23
24 // Add density to FChaosPhysicsMaterial
26
27 // improved UX of the exclusion volumes by adding a new mode enum
29
30 // Fix rest transforms wrongly stored in geometry collection components
32
33 // Distinct version required to properly handle legacy serialization of FActorInstanceHandle to avoid hitting replay deserialization perf
35
36 // Add weight maps to Chaos cloth asset mass and gravity scale
38
39 // -----<new versions can be added above this line>-------------------------------------------------
42 };
43
44 // The GUID for this custom version number
45 CORE_API const static FGuid GUID;
46
47private:
49};
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition FortniteValkyrieBranchObjectVersion.h:9
Type
Definition FortniteValkyrieBranchObjectVersion.h:11
@ ActorInstanceHandleSwitchedToInterfaces
Definition FortniteValkyrieBranchObjectVersion.h:34
@ LatestVersion
Definition FortniteValkyrieBranchObjectVersion.h:41
@ AtomDeprecatingRedundantColorStructs
Definition FortniteValkyrieBranchObjectVersion.h:19
@ WaterBodyExclusionVolumeMode
Definition FortniteValkyrieBranchObjectVersion.h:28
@ VersionPlusOne
Definition FortniteValkyrieBranchObjectVersion.h:40
@ BeforeCustomVersionWasAdded
Definition FortniteValkyrieBranchObjectVersion.h:13
@ FixRestTransformsInGeometryCollectionComponent
Definition FortniteValkyrieBranchObjectVersion.h:31
@ ChaosClothAssetWeightedMassAndGravity
Definition FortniteValkyrieBranchObjectVersion.h:37
@ ChaosAddDensityToPhysicsMaterial
Definition FortniteValkyrieBranchObjectVersion.h:25
@ AtomPrimitiveNewSerialization
Definition FortniteValkyrieBranchObjectVersion.h:16
@ RefCountedOImplicitObjects
Definition FortniteValkyrieBranchObjectVersion.h:22
CORE_API static const FGuid GUID
Definition FortniteValkyrieBranchObjectVersion.h:45
Definition Guid.h:109