EnableUEJpeg
EnableUEJpeg
#Overview
name: EnableUEJpeg
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/BaseEditor.ini:261, section: [TextureImporter]
- INI Section:
TextureImporter
- Raw value:
False
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Plugins/Interchange/Runtime/Source/Import/Private/Texture/InterchangeUEJPEGTranslator.cpp:38
Scope (from outer to inner):
file
function TArray<FString> UInterchangeUEJPEGTranslator::GetSupportedFormats
Source code excerpt:
Formats.Add(TEXT("uej;UEJpeg image"));
bool bEnableUEJpeg = false;
GConfig->GetBool(TEXT("TextureImporter"), TEXT("EnableUEJpeg"), bEnableUEJpeg, GEditorIni);
if (bEnableUEJpeg)
{
Formats.Add(TEXT("jpg;JPEG image"));
Formats.Add(TEXT("jpeg;JPEG image"));
}
}