gc.ActorClusteringEnabled
gc.ActorClusteringEnabled
#Overview
name: gc.ActorClusteringEnabled
The value of this variable can be defined or overridden in .ini config files. 1
.ini config file referencing this setting variable.
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Whether to allow levels to create actor clusters for GC.
It is referenced in 1
C++ source file.
#Summary
#Setting Variables
#References In INI files
Location: <Workspace>/Engine/Config/BaseEngine.ini:1530, section: [/Script/Engine.GarbageCollectionSettings]
- INI Section:
/Script/Engine.GarbageCollectionSettings
- Raw value:
False
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Engine/Private/Level.cpp:86
Scope: file
Source code excerpt:
int32 GActorClusteringEnabled = 1;
static FAutoConsoleVariableRef CVarActorClusteringEnabled(
TEXT("gc.ActorClusteringEnabled"),
GActorClusteringEnabled,
TEXT("Whether to allow levels to create actor clusters for GC."),
ECVF_Default
);
int32 GOptimizeActorRegistration = 1;