gc.UseDisregardForGCOnDedicatedServers
gc.UseDisregardForGCOnDedicatedServers
#Overview
name: gc.UseDisregardForGCOnDedicatedServers
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:
If false, DisregardForGC will be disabled for dedicated servers.
It is referenced in 1 C++ source file.
#Summary
#Setting Variables
#References In INI files
Location: <Workspace>/Engine/Config/BaseEngine.ini:1531, section: [/Script/Engine.GarbageCollectionSettings]
- INI Section:
/Script/Engine.GarbageCollectionSettings - 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/Launch/Private/LaunchEngineLoop.cpp:306
Scope: file
Source code excerpt:
int32 GUseDisregardForGCOnDedicatedServers = 1;
static FAutoConsoleVariableRef CVarUseDisregardForGCOnDedicatedServers(
TEXT("gc.UseDisregardForGCOnDedicatedServers"),
GUseDisregardForGCOnDedicatedServers,
TEXT("If false, DisregardForGC will be disabled for dedicated servers."),
ECVF_Default
);
static TAutoConsoleVariable<int32> CVarDoAsyncEndOfFrameTasksRandomize(