s.RandomizeLoadOrder
s.RandomizeLoadOrder
#Overview
name: s.RandomizeLoadOrder
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
If > 0, will randomize the load order of pending packages using this seed instead of using the most efficient order. This can be used to find bugs.
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/Source/Runtime/CoreUObject/Private/Serialization/AsyncLoading.cpp:1698
Scope: file
Source code excerpt:
int32 GRandomizeLoadOrder = 0;
static FAutoConsoleVariableRef CVarRandomizeLoadOrder(
TEXT("s.RandomizeLoadOrder"),
GRandomizeLoadOrder,
TEXT("If > 0, will randomize the load order of pending packages using this seed instead of using the most efficient order. This can be used to find bugs."),
ECVF_Default
);
static int32 GetRandomSerialNumber(int32 MaxVal = MAX_int32)