BulkDataRegistryEnabled
BulkDataRegistryEnabled
#Overview
name: BulkDataRegistryEnabled
The value of this variable can be defined or overridden in .ini config files. 1
.ini config file referencing this setting variable.
It is referenced in 1
C++ source file.
#Summary
#Setting Variables
#References In INI files
Location: <Workspace>/Engine/Config/BaseEditor.ini:333, section: [CookSettings]
- INI Section:
CookSettings
- Raw value:
true
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/CoreUObject/Private/Serialization/BulkDataRegistry.cpp:115
Scope (from outer to inner):
file
function bool IBulkDataRegistry::IsEnabled
Source code excerpt:
bool bEnabled = true;
GConfig->GetBool(TEXT("CookSettings"), TEXT("BulkDataRegistryEnabled"), bEnabled, GEditorIni);
return bEnabled;
}
IBulkDataRegistry& IBulkDataRegistry::Get()
{
check(UE::BulkDataRegistry::Private::GBulkDataRegistry);