UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
SoundSubmixCustomVersion.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "Misc/Guid.h"
6
7#define UE_API ENGINE_API
8
9// Custom serialization version for SoundSubmixes.
11{
12 enum Type
13 {
14 // Before any version changes were made in the plugin
16
17 // Migrated deprecated properties OutputVolume, WetLevel, DryLevel
19
20 // Convert modulated properties to dB.
22
23 // -----<new versions can be added above this line>-------------------------------------------------
26 };
27
28 // The GUID for this custom version number
29 UE_API const static FGuid GUID;
30
31private:
33};
34
35#undef UE_API
#define UE_API
Definition SoundSubmixCustomVersion.h:7
Definition Guid.h:109
Definition SoundSubmixCustomVersion.h:11
UE_API static const FGuid GUID
Definition SoundSubmixCustomVersion.h:29
Type
Definition SoundSubmixCustomVersion.h:13
@ ConvertLinearModulatorsToDb
Definition SoundSubmixCustomVersion.h:21
@ LatestVersion
Definition SoundSubmixCustomVersion.h:25
@ VersionPlusOne
Definition SoundSubmixCustomVersion.h:24
@ BeforeCustomVersionWasAdded
Definition SoundSubmixCustomVersion.h:15
@ MigrateModulatedSendProperties
Definition SoundSubmixCustomVersion.h:18