Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

How do you specify/ force speaker output settings for the Unity Editor?

0 votes
I would like to add the ability to force/ specify the speaker output configuration for use by the Unity Editor.

Where is that functionality available for modification?

 

Thanks in advance!

-damian
asked Jan 22, 2014 in General Discussion by Damian K. (920 points)

1 Answer

+1 vote

You can look at the AkInitSettings struct in the SDK documentation.  You will need to set the following member:

AkOutputSettings  settingsMainOutput 

Then, you will be able to pass the init settings to the Init function:

AK::SoundEngine::Init( &initSettings, ... )

This is valid in general and for Unity also.

answered Jan 24, 2014 by Bernard R. (Audiokinetic) (35,110 points)
...