s.WarnIfTimeLimitExceeded
s.WarnIfTimeLimitExceeded
#Overview
name: s.WarnIfTimeLimitExceeded
The value of this variable can be defined or overridden in .ini config files. 1
.ini config file referencing this setting variable.
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Enables log warning if time limit for time-sliced package streaming has been exceeded.
It is referenced in 1
C++ source file.
#Summary
#Setting Variables
#References In INI files
Location: <Workspace>/Engine/Config/BaseEngine.ini:1501, section: [/Script/Engine.StreamingSettings]
- INI Section:
/Script/Engine.StreamingSettings
- Raw value:
False
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/CoreUObject/Private/Serialization/AsyncPackageLoader.cpp:726
Scope: file
Source code excerpt:
int32 GWarnIfTimeLimitExceeded = 0;
static FAutoConsoleVariableRef CVarWarnIfTimeLimitExceeded(
TEXT("s.WarnIfTimeLimitExceeded"),
GWarnIfTimeLimitExceeded,
TEXT("Enables log warning if time limit for time-sliced package streaming has been exceeded."),
ECVF_Default
);
float GTimeLimitExceededMultiplier = 1.5f;