gc.IncrementalReachabilityTimeLimit
gc.IncrementalReachabilityTimeLimit
#Overview
name: gc.IncrementalReachabilityTimeLimit
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Time in seconds (game time) we should allow for incremental GC (experimental).
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:277
Scope: file
Source code excerpt:
static float GIncrementalReachabilityTimeLimit = 0.005f;
static FAutoConsoleVariableRef CVarIncrementalReachabilityTimeLimit(
TEXT("gc.IncrementalReachabilityTimeLimit"),
GIncrementalReachabilityTimeLimit,
TEXT("Time in seconds (game time) we should allow for incremental GC (experimental)."),
ECVF_Default
);
static int32 GAllowIncrementalGather = 0;