Setting the Panning Mode

Two common speaker panning modes can be set in the engine: Speakers and Headphones.

Setting the panning mode to Speakers will set the front L/R panning to be 60 degrees apart.

Setting the panning mode to Headphones will set the front L/R panning to be 180 degrees apart.

These panning angles will change the output mix to work better with the physical arrangement of speakers around the real listener.

To set the speaker panning mode, send a request in C++ to the audio system.

C++ Example: Request Set Panning Mode

if (auto audioSystem = AZ::Interface<Audio::IAudioSystem>::Get();
    audioSystem != nullptr)
{
    Audio::SystemRequest::SetPanningMode setPanMode;
    setPanMode.m_panningMode = Audio::PanningMode::Headphones; // or PanningMode::Speakers

    audioSystem->PushRequest(AZStd::move(setPanMode));
}

Copyright © 2026 DawnEngine. All rights reserved.

DawnEngine is a commercial 3D engine distributed under the DawnEngine end-user license agreement. Engine binaries and source are proprietary and are not covered by the licenses below.

Documentation only: the prose and templates on this site are a derivative work of Open 3D Engine (O3DE) documentation by the O3DE Contributors, used under CC BY 4.0 (documentation content), Apache 2.0 (site code), and the MIT license (inline code samples).

The open-source 3D engine that DawnEngine is built on top of is Open 3D Engine . DawnEngine is not affiliated with, endorsed by, or sponsored by The Linux Foundation or the O3DE project. “O3DE” and “Open 3D Engine” are trademarks of The Linux Foundation.