lyra.chaos.ExperienceDelayLoad.RandomSecs
lyra.chaos.ExperienceDelayLoad.RandomSecs
#Overview
name: lyra.chaos.ExperienceDelayLoad.RandomSecs
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
A random amount of time between 0 and this value (in seconds) will be added as a delay of load completion of the experience (along with the fixed value lyra.chaos.ExperienceDelayLoad.MinSecs)
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>/Projects/Lyra/Source/LyraGame/GameModes/LyraExperienceManagerComponent.cpp:36
Scope (from outer to inner):
file
namespace LyraConsoleVariables
Source code excerpt:
static float ExperienceLoadRandomDelayRange = 0.0f;
static FAutoConsoleVariableRef CVarExperienceLoadRandomDelayRange(
TEXT("lyra.chaos.ExperienceDelayLoad.RandomSecs"),
ExperienceLoadRandomDelayRange,
TEXT("A random amount of time between 0 and this value (in seconds) will be added as a delay of load completion of the experience (along with the fixed value lyra.chaos.ExperienceDelayLoad.MinSecs)"),
ECVF_Default);
float GetExperienceLoadDelayDuration()
{