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.

AkBank Load On: Awake not working: Fix

0 votes
To fix:

Find the AkTriggerHandler script
Then find the function:
RegisterTriggers(System.Collections.Generic.List<int> in_triggerList, AkTriggerBase.Trigger in_delegate)

within the function change:

if (triggerList.Contains(AWAKE_TRIGGER_ID))
in_delegate(null);

To:

if (in_triggerList.Contains(AWAKE_TRIGGER_ID))
in_delegate(null);

 

I Send a bug report so hopefully, it will be fixed soon.
asked May 31, 2020 in General Discussion by Mads H. (100 points)
In version 2021.1.3 I see this code has been merged, but I am still getting the Awake failure to load the Master_Bank.

When the Unity editor closes, I get "Bank Load Request Received" and "Bank Already Loaded" error messages sequentially, but no messages arrive from Unity to the Profiler until I quit the editor.

Please sign-in or register to answer this question.

...