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 in Editor Integration issue [closed]

0 votes

 

Please see: Editor-time sound engine in Unity

There's a code snipplet:

https://gist.github.com/zedarus/aeb36c59c5269df4bc991aebc70db95f

I get this error or symbol not found:

bank.LoadInEditor();

bank.UnLoadInEditor();

Do you have any ideas where 'LoadInEditor' is located at?
 

 

related to an answer for: Editor-time sound engine in Unity
closed with the note: I managed to fix by adding this.
asked Sep 22, 2019 in General Discussion by Sally P. (360 points)
closed Jun 30, 2021 by Mads Maretty S. (Audiokinetic)

1 Answer

0 votes
I managed to fix by adding this line:

   _wwiseInitializer.runInEditMode = true; // Add this to Unity script.
answered Sep 27, 2019 by Sally P. (360 points)
...