EditorModuleName

EditorModuleName

#Overview

name: EditorModuleName

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 2 C++ source files.

#Summary

#Setting Variables

#References In INI files

Location: <Workspace>/Engine/Config/BaseEngine.ini:22, section: [InstallBundleManager]

#References in C++ code

#Callsites

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

#Loc: <Workspace>/Engine/Source/Runtime/InstallBundleManager/Private/InstallBundleManagerInterface.cpp:27

Scope (from outer to inner):

file
function     TSharedPtr<IInstallBundleManager> IInstallBundleManager::GetPlatformInstallBundleManager

Source code excerpt:

		FString ModuleName;
#if WITH_EDITOR
		GConfig->GetString(TEXT("InstallBundleManager"), TEXT("EditorModuleName"), ModuleName, GEngineIni);
#else
		GConfig->GetString(TEXT("InstallBundleManager"), TEXT("ModuleName"), ModuleName, GEngineIni);
#endif // WITH_EDITOR

		if (FModuleManager::Get().ModuleExists(*ModuleName))
		{

#Loc: <Workspace>/Engine/Source/Runtime/InstallBundleManager/Public/InstallBundleManagerModule.h:64

Scope (from outer to inner):

file
class        class TInstallBundleManagerModule : public IInstallBundleManagerModule
function     virtual void StartupModule

Source code excerpt:

		FString ModuleName;
#if WITH_EDITOR
		GConfig->GetString(TEXT("InstallBundleManager"), TEXT("EditorModuleName"), ModuleName, GEngineIni);
#else
		GConfig->GetString(TEXT("InstallBundleManager"), TEXT("ModuleName"), ModuleName, GEngineIni);
#endif // WITH_EDITOR

		if (FModuleManager::Get().GetModule(*ModuleName) == this)
		{