bLoadNativeOSSBeforeDefault

bLoadNativeOSSBeforeDefault

#Overview

name: bLoadNativeOSSBeforeDefault

The value of this variable can be defined or overridden in .ini config files. 1 .ini config file referencing this setting variable.

It is referenced in 1 C++ source file.

#Summary

#Setting Variables

#References In INI files

Location: <Workspace>/Projects/Lyra/Config/Custom/SteamEOS/DefaultEngine.ini:90, section: [OnlineSubsystem]

#References in C++ code

#Callsites

This variable is referenced in the following C++ source code:

#Loc: <Workspace>/Engine/Plugins/Online/OnlineSubsystem/Source/Private/OnlineSubsystemModule.cpp:87

Scope (from outer to inner):

file
function     void FOnlineSubsystemModule::StartupModule

Source code excerpt:

	// Some default OSSes may rely on the native OSS for functionality. This config is to ensure the native is loaded first in cases where this is desired

	bool bLoadNativeOSSBeforeDefault = false;
	GConfig->GetBool(TEXT("OnlineSubsystem"), TEXT("bLoadNativeOSSBeforeDefault"), bLoadNativeOSSBeforeDefault, GEngineIni);

	if(bLoadNativeOSSBeforeDefault)
	{
		IOnlineSubsystem::GetByPlatform();
		LoadDefaultSubsystem();
		ProcessConfigDefinedSubsystems();
	}
	else