You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb trivial #jira UE-99463 #preflight 6288fd998828ea88c8aef3d0 #ROBOMERGE-OWNER: robert.manuszewski #ROBOMERGE-AUTHOR: robert.manuszewski #ROBOMERGE-SOURCE: CL 20314896 via CL 20314897 via CL 20314903 via CL 20314904 #ROBOMERGE-BOT: UE5 (Release-Engine-Staging -> Main) (v948-20297126) [CL 20315214 by robert manuszewski in ue5-main branch]
77 lines
2.9 KiB
C++
77 lines
2.9 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Engine/DeveloperSettings.h"
|
|
#include "MetasoundFrontendDocument.h"
|
|
#include "UObject/NoExportTypes.h"
|
|
#include "UObject/Object.h"
|
|
#include "UObject/ObjectMacros.h"
|
|
|
|
#include "MetasoundSettings.generated.h"
|
|
|
|
|
|
// Forward Declarations
|
|
struct FMetasoundFrontendClassName;
|
|
|
|
|
|
UENUM()
|
|
enum class EMetaSoundMessageLevel : uint8
|
|
{
|
|
Error,
|
|
Warning,
|
|
Info
|
|
};
|
|
|
|
USTRUCT()
|
|
struct METASOUNDENGINE_API FDefaultMetaSoundAssetAutoUpdateSettings
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
/** MetaSound to prevent from AutoUpdate. */
|
|
UPROPERTY(EditAnywhere, Category = "AutoUpdate", meta = (AllowedClasses = "/Script/MetasoundEngine.MetaSound, /Script/MetasoundEngine.MetaSoundSource"))
|
|
FSoftObjectPath MetaSound;
|
|
};
|
|
|
|
UCLASS(config = MetaSound, defaultconfig, meta = (DisplayName = "MetaSounds"))
|
|
class METASOUNDENGINE_API UMetaSoundSettings : public UDeveloperSettings
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
/** If true, AutoUpdate is enabled, increasing load times. If false, skips AutoUpdate on load, but can result in MetaSounds failing to load,
|
|
* register, and execute if interface differences are present. */
|
|
UPROPERTY(EditAnywhere, config, Category = AutoUpdate)
|
|
bool bAutoUpdateEnabled = true;
|
|
|
|
/** List of native MetaSound classes whose node references should not be AutoUpdated. */
|
|
UPROPERTY(EditAnywhere, config, Category = AutoUpdate, meta = (DisplayName = "DenyList", EditCondition = "bAutoUpdateEnabled"))
|
|
TArray<FMetasoundFrontendClassName> AutoUpdateDenylist;
|
|
|
|
/** List of MetaSound assets whose node references should not be AutoUpdated. */
|
|
UPROPERTY(EditAnywhere, config, Category = AutoUpdate, meta = (DisplayName = "Asset DenyList", EditCondition = "bAutoUpdateEnabled"))
|
|
TArray<FDefaultMetaSoundAssetAutoUpdateSettings> AutoUpdateAssetDenylist;
|
|
|
|
/** If true, warnings will be logged if updating a node results in existing connections being discarded. */
|
|
UPROPERTY(EditAnywhere, config, Category = AutoUpdate, meta = (DisplayName = "Log Warning on Dropped Connection", EditCondition = "bAutoUpdateEnabled"))
|
|
bool bAutoUpdateLogWarningOnDroppedConnection = true;
|
|
|
|
/** Directories to scan & automatically register MetaSound post initial asset scan on engine start-up.
|
|
* May speed up subsequent calls to playback MetaSounds post asset scan but increases application load time.
|
|
* See 'MetaSoundAssetSubsystem::RegisterAssetClassesInDirectories' to dynamically register or
|
|
* 'MetaSoundAssetSubsystem::UnregisterAssetClassesInDirectories' to unregister asset classes.
|
|
*/
|
|
UPROPERTY(EditAnywhere, config, Category = Registration, meta = (RelativePath, LongPackageName))
|
|
TArray<FDirectoryPath> DirectoriesToRegister;
|
|
|
|
UPROPERTY(Transient)
|
|
int32 DenyListCacheChangeID = 0;
|
|
|
|
#if WITH_EDITOR
|
|
virtual void PostEditChangeProperty(FPropertyChangedEvent& PropertyChangedEvent) override
|
|
{
|
|
DenyListCacheChangeID++;
|
|
}
|
|
#endif // WITH_EDITOR
|
|
};
|