TimerManager.BuildTimerSourceList
TimerManager.BuildTimerSourceList
#Overview
name: TimerManager.BuildTimerSourceList
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
When non-zero, tracks which timers expire each frame, dumping them during shutdown or when the flag is changed back to 0.\n 0: Off\n 1: On - Group timers by class (useful to focus on entire systems of things, especially bad spikey frames where we care about aggregates)\n 2: On - Do not group timers by class (useful if individual instances are problematic)
It is referenced in 2
C++ source files.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Engine/Private/TimerManager.cpp:65
Scope: file
Source code excerpt:
static int32 GBuildTimerSourceList = 0;
static FAutoConsoleVariableRef CVarGBuildTimerSourceList(
TEXT("TimerManager.BuildTimerSourceList"), GBuildTimerSourceList,
TEXT("When non-zero, tracks which timers expire each frame, dumping them during shutdown or when the flag is changed back to 0.")
TEXT("\n 0: Off")
TEXT("\n 1: On - Group timers by class (useful to focus on entire systems of things, especially bad spikey frames where we care about aggregates)")
TEXT("\n 2: On - Do not group timers by class (useful if individual instances are problematic)"),
ECVF_Default);
#Loc: <Workspace>/Engine/Source/Runtime/Engine/Public/TimerManager.h:510
Scope: file
Source code excerpt:
#if UE_ENABLE_TRACKING_TIMER_SOURCES
/** Debugging/tracking information used when TimerManager.BuildTimerSourceList is set */
TUniquePtr<FTimerSourceList> TimerSourceList;
#endif
};