AssetRegistry.DeferDependencySort
AssetRegistry.DeferDependencySort
#Overview
name: AssetRegistry.DeferDependencySort
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
If true, the dependency lists on dependency nodes will not be sorted until after the initial load is complete
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/AssetRegistry/Private/AssetRegistry.cpp:165
Scope (from outer to inner):
file
namespace UE::AssetRegistry::Impl
Source code excerpt:
bool bDeferDependencySort = false;
static FAutoConsoleVariableRef CVarAssetRegistryDeferDependencySort(
TEXT("AssetRegistry.DeferDependencySort"),
UE::AssetRegistry::Impl::bDeferDependencySort,
TEXT("If true, the dependency lists on dependency nodes will not be sorted until after the initial load is complete"));
/** If true, defer sorting of referencer data until loading is complete, this is enabled by default because of native packages with many referencers */
bool bDeferReferencerSort = true;
static FAutoConsoleVariableRef CVarAssetRegistryDeferReferencerSort(