gc.IncrementalGatherTimeLimit
gc.IncrementalGatherTimeLimit
#Overview
name: gc.IncrementalGatherTimeLimit
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Override Incremental Gather Time Limit (in seconds).
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/CoreUObject/Private/UObject/GarbageCollection.cpp:296
Scope: file
Source code excerpt:
static float GIncrementalGatherTimeLimit = 0.0f;
static FAutoConsoleVariableRef CVarIncrementalGatherTimeLimit(
TEXT("gc.IncrementalGatherTimeLimit"),
GIncrementalGatherTimeLimit,
TEXT("Override Incremental Gather Time Limit (in seconds)."),
ECVF_Default
);
#endif