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

0 支持
I imported Wwise into a project of mine, assuming things would go smoothly like last time. There's an AkInitializer and an AkBank in the scene. When pressing 'play' the console says Wwise has successfully been initialized. There is a default listener on the main camera in the scene. Yet, when I play a sound, I get the warning: "Editor Listener isn't initialized. No sound will be heard." Given this issue does not appear anywhere online, I tried my own troubleshooting steps -- soundbank regeneration, editor restart, full reimport... nothing.
Ryan G. (100 ポイント) General Discussion
I tracked the issue to "AkSoundEngineController.OnEnableEditorListener()" at line 290:

- if (IsPlayingOrIsNotInitialized || editorListenerGameObject != null)
-     return;

Because "UnityEngine.Application.isPlaying" is true, the Editor Listener does not get initialized. Is this the intended behavior? If so, why does it cause issues only for me?

回答 1

0 支持
Did you play sound via the play button of the AkAmbient component which just only executes under the editor mode?
Steven Z. (140 ポイント)
...