menu
 

AudiokineticのコミュニティQ&AはWwiseやStrataのコミュニティ内でユーザ同士が質問・回答をし合うことができるフォーラムです。Audiokineticテクニカルサポートチームからの回答をご希望の場合は、必ず サポートチケットページ をご利用ください。

0 支持

Hi there,

I'm receiving the following error within Unity (with relation to Wwise) upon game startup: 

Wwise: Failed to create memory pool: The maximum number of memory pool was exceeded(Object: -1)
Wwise: Insufficient Space to Load Bank(Object: -1)
Wwise: Bank Load Failed (Object:-1)

How do I resolve this? What's strange is that my soundbank is relatively small--just 17 sounds, all about 5MB each. I notice in the documentation a possible to "Enlarge the pool by initializing the different modules of the sound engine in the initialization parameters." If this is the easiest option, how do I do this? 

Thanks,
Ben

 

Ben M. (170 ポイント) General Discussion

回答 2

0 支持
The default settings are quite small so this can definitely happen. You have to change these settings in Unity not in Wwise, and they can be changed in the Wwise Global object / Wwise Initializer component.
Beatrix Moersch (3.3k ポイント)
+3 支持
 
ベストアンサー
Base on wwise 2017.2.2

01 : "The maximum number of memory pool was exceeded" , it is about the number of pool not the size.

02 : If your case was unity integration , check AkSoundEnginController.cs in your unity project.

go to line 157 , "memSetting.uMaxNumPools = 20;" <--- 20 is default value , increase this.
Yu-Wei Su (540 ポイント)
Hou Chenzhong (Audiokinetic) 選択
Just solve my problem
...