PlatformNameAliases

PlatformNameAliases

#Overview

name: PlatformNameAliases

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>/Engine/Config/Windows/DataDrivenPlatformInfo.ini:4, section: [DataDrivenPlatformInfo]

#References in C++ code

#Callsites

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

#Loc: <Workspace>/Engine/Source/Runtime/Core/Private/Misc/DataDrivenPlatformInfoRegistry.cpp:446

Scope (from outer to inner):

file
function     const TMap<FName, FDataDrivenPlatformInfo>& FDataDrivenPlatformInfoRegistry::GetAllPlatformInfos

Source code excerpt:

				// get platform name aliases
				FString PlatformNameAliasesStr;
				IniFile.GetString(TEXT("DataDrivenPlatformInfo"), TEXT("PlatformNameAliases"), PlatformNameAliasesStr);
				TArray<FString> PlatformNameAliases;
				PlatformNameAliasesStr.ParseIntoArrayWS(PlatformNameAliases, TEXT(","));
				for (const FString& PlatformNameAlias : PlatformNameAliases)
				{
					GlobalPlatformNameAliases.Add(*PlatformNameAlias, PlatformName);
				}
			}
		}