Navigation
API > API/Runtime > API/Runtime/Engine
Enumeration defines how to treat mono 2D playback. Mono sounds need to upmixed to stereo when played back in 2D.
| Name | EMonoChannelUpmixMethod |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Classes/Sound/AudioSettings.h |
| Include Path | #include "Sound/AudioSettings.h" |
Syntax
enum EMonoChannelUpmixMethod
{
Linear,
EqualPower,
FullVolume,
}
Values
| Name | Remarks |
|---|---|
| Linear | The mono channel is split 0.5 left/right. |
| EqualPower | The mono channel is split 0.707 left/right. |
| FullVolume | The mono channel is split 1.0 left/right. |