fx.Niagara.SystemSimulation.TaskStallTimeout
fx.Niagara.SystemSimulation.TaskStallTimeout
#Overview
name: fx.Niagara.SystemSimulation.TaskStallTimeout
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Timeout in microseconds for Niagara simulation tasks to be considered stalled.\nWhen this is > 0 we busy wait as opposed to joining the TG so avoid using execpt for debugging.
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/NiagaraSystemSimulation.cpp:83
Scope: file
Source code excerpt:
int32 GNiagaraSystemSimulationTaskStallTimeout = 0;
static FAutoConsoleVariableRef CVarNiagaraSystemSimulationTaskStallTimeout(
TEXT("fx.Niagara.SystemSimulation.TaskStallTimeout"),
GNiagaraSystemSimulationTaskStallTimeout,
TEXT("Timeout in microseconds for Niagara simulation tasks to be considered stalled.\n")
TEXT("When this is > 0 we busy wait as opposed to joining the TG so avoid using execpt for debugging."),
ECVF_Default
);