bAllowNativeComponentClassOverrides
bAllowNativeComponentClassOverrides
#Overview
name: bAllowNativeComponentClassOverrides
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/BaseEngine.ini:2052, section: [Kismet]
- INI Section:
Kismet
- 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/UObject/UObjectGlobals.cpp:104
Scope (from outer to inner):
file
function bool GetAllowNativeComponentClassOverrides
Source code excerpt:
COREUOBJECT_API bool GetAllowNativeComponentClassOverrides()
{
static const bool bAllowNativeComponentClassOverrides = []()
{
bool bAllow;
GConfig->GetBool(TEXT("Kismet"), TEXT("bAllowNativeComponentClassOverrides"), bAllow, GEngineIni);
return bAllow;
}();
return bAllowNativeComponentClassOverrides;
}
DEFINE_STAT(STAT_InitProperties);
DEFINE_STAT(STAT_ConstructObject);
DEFINE_STAT(STAT_AllocateObject);
DEFINE_STAT(STAT_PostConstructInitializeProperties);
DEFINE_STAT(STAT_LoadConfig);