EnableUEWavComp

EnableUEWavComp

#Overview

name: EnableUEWavComp

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:255, section: [AudioImporter]

#References in C++ code

#Callsites

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

#Loc: <Workspace>/Engine/Source/Runtime/Engine/Private/SoundWave.cpp:4952

Scope (from outer to inner):

file
function     void USoundWave::FEditorAudioBulkData::UpdatePayload

Source code excerpt:


	bool bEnableUEWavComp = false;
	GConfig->GetBool(TEXT("AudioImporter"), TEXT("EnableUEWavComp"), bEnableUEWavComp, GEditorIni);
	if (!bEnableUEWavComp)
	{
		// Passthru if we are disabled.
		return RawData.UpdatePayload(InPayload, SoundWave);
	}