Audio Engine

The audio engine is an interface which allows control over handful of features such as:

Master Volume Control

Volume in Tsar is percent based, which means you can set it between 0(mute) and 1(Full volume).
You can set master volume in script using:

AudioListener listener = GetComponent<AudioListener>();
listener.SetVolume(0.8f); //Set master volume to 80%

There is only one listener per Scene!

3D Spatial Sound

Spatialization is based on both Listener and Audio Sources position and direction, for Listener it can be enabled/disabled using:

AudioListener listener = GetComponent<AudioListener>();
listener.EnableSpatialization(true);

You can switch between manual and automatic update of listener position & orientation.
By default they're updated automatically.

AudioListener listener = GetComponent<AudioListener>();
listener.EnableAutomaticUpdate(true);

If you disabled automatic update, you can update them manually:

AudioListener listener = GetComponent<AudioListener>();
listener.SetPosition({10.f, 10.f, 5.f}); //x=10, y=10, z=5
listener.SetDirection({1.f, 0.f, 0.f}); //facing Right along X, use normalized vector

Audio Playback

Tsar currently supports wav and mp3 audio files, also refered as audio clips.
In Editor, for now, you can only Play the clip in Audio Source without Pause, Resume, or any applied effects.
Applying effects works during Runtime.

Mixing

Mixing is currently not supported.