fx.EnableNiagaraRuntimeCycleCounts
fx.EnableNiagaraRuntimeCycleCounts
#Overview
name: fx.EnableNiagaraRuntimeCycleCounts
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Toggle for runtime cylce counts tracking Niagara\'s frame time. \n
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/Plugins/FX/Niagara/Source/Niagara/Private/NiagaraSystem.cpp:92
Scope: file
Source code excerpt:
//Disable for now until we can spend more time on a good method of applying the data gathered.
int32 GEnableNiagaraRuntimeCycleCounts = 0;
static FAutoConsoleVariableRef CVarEnableNiagaraRuntimeCycleCounts(TEXT("fx.EnableNiagaraRuntimeCycleCounts"), GEnableNiagaraRuntimeCycleCounts, TEXT("Toggle for runtime cylce counts tracking Niagara's frame time. \n"), ECVF_ReadOnly);
static float GNiagaraScalabiltiyMinumumMaxDistance = 1.0f;
static FAutoConsoleVariableRef CVarNiagaraScalabiltiyMinumumMaxDistance(
TEXT("fx.Niagara.Scalability.MinMaxDistance"),
GNiagaraScalabiltiyMinumumMaxDistance,
TEXT("Minimum value for Niagara's Max distance value. Primariy to prevent divide by zero issues and ensure a sensible distance value for sorted significance culling."),