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.

Unity Integration - Stop AkInitializer from destroying cross-scene copies in Edit mode

0 votes
There can only be one AkInitializer in any open Unity scene; AkInitializer's Awake() and AkWwiseSettingsWindow's OnGUI() methods both run in edit mode and destroy arbitrary AkInitializers until there is only one.

This behavior is acceptable at runtime because only one AkInitializer should exist when the game is running. However, it leads to unexpected behavior during multi-scene editing (introduced in 2005). If an artist simultaneously opens two Unity scenes that each contain one AkInitializer component (such as when copying an object from one to another or comparing objects in both scenes), one of the components will silently disappear, preventing audio playback in that scene even when it is loaded by itself.

Please modify this behavior so that AkInitializer deduplication either:

- only happens at runtime

or

- only happens within a single scene
asked Nov 1, 2018 in Feature Requests by Daniel C. (100 points)

Please sign-in or register to answer this question.

...