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