2021-03-30 18:22:10 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "MetasoundFrontendRegistryTransaction.h"
|
|
|
|
|
|
|
|
|
|
namespace Metasound
|
|
|
|
|
{
|
|
|
|
|
namespace Frontend
|
|
|
|
|
{
|
2022-05-09 09:50:28 -04:00
|
|
|
int32 MetaSoundFrontendDiscardStreamedRegistryTransactionsCVar = 1;
|
|
|
|
|
|
|
|
|
|
FAutoConsoleVariableRef CVarMetaSoundFrontendDiscardStreamedRegistryTransactions(
|
2022-08-30 15:11:11 -04:00
|
|
|
TEXT("au.MetaSound.Frontend.DiscardStreamedRegistryTransactions"),
|
2022-05-09 09:50:28 -04:00
|
|
|
MetaSoundFrontendDiscardStreamedRegistryTransactionsCVar,
|
|
|
|
|
TEXT("If enabled, MetaSound registry transactions are discarded after they have been streamed.\n")
|
|
|
|
|
TEXT("0: Disabled, !0: Enabled (default)"),
|
|
|
|
|
ECVF_Default);
|
2021-03-30 18:22:10 -04:00
|
|
|
}
|
|
|
|
|
}
|
2021-06-23 20:07:53 -04:00
|
|
|
|