menu
 

在 Audiokinetic 社区问答论坛上,用户可对 Wwise 和 Strata 相关问题进行提问和解答。如需从 Audiokinetic 技术支持团队获取答复,请务必使用技术支持申请单页面。

0 投票
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.
分类:General Discussion | 用户: Mads H. (100 分)
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.

...