UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
DebugSerializationFlags.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3/*=============================================================================
4DebugSerializationFlags.h:
5Set custom flags on the archive to help track issues while serializing
6=============================================================================*/
7
8#pragma once
9
10#include "CoreTypes.h"
11
12// Debug serialization flags
14{
16 DSF_None = 0x00000000,
17
23 DSF_IgnoreDiff UE_DEPRECATED(5.0, "Diffing now compares the final value after serialization is complete; marking diffs is usually not required. Use FArchiveStackTraceIgnoreScope where it is still necessary.")
24 = 0x00000001,
26};
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
EDebugSerializationFlags
Definition DebugSerializationFlags.h:14
@ UE_DEPRECATED
Keep this object during garbage collection because it's still being used by the cooker.
Definition DebugSerializationFlags.h:23
@ DSF_EnableCookerWarnings
Definition DebugSerializationFlags.h:25
@ DSF_None
Definition DebugSerializationFlags.h:16