Returns the speaker mode capability of the current audio driver. (Read Only)
using UnityEngine;
public class Example : MonoBehaviour { // Set the speaker mode to that of the system settings.
void Start() { AudioSettings.speakerMode = AudioSettings.driverCapabilities; } }