コミュニティQ&A

Audiokineticのコミュニティ主導のQ&Aフォーラムへようこそ。ここはWwiseとStrataのユーザのみなさまがお互いに協力し合う場です。弊社チームによる直接のサポートをご希望の場合はサポートチケットページをご利用ください。バグを報告するには、Audiokinetic LauncherのBug Reportオプションをご利用ください。(Q&AフォーラムではBug Reportを受け付けておりませんのでご注意ください。専用のBug Reportシステムをご利用いただくことで、バグの報告が適切な担当部門に届き、修正される可能性が高まります。)

最適な回答を迅速に得られるよう、ご質問を投稿される際は以下のヒントをご参考ください。

  • 具体的に示す:何を達成したいのか、またはどんな問題に直面しているのかを具体的に示してください。
  • 重要な詳細情報を含める:Wwiseとゲームエンジンのバージョンやご利用のOSなど詳細情報を記載してください。
  • 試したことを説明する:すでに試してみたトラブルシューティングの手順を教えてください。
  • 事実に焦点を当てる:問題の技術的な事実を記載してください。問題に焦点を当てることで、ほかのユーザのみなさまが解決策を迅速に見つけやすくなります。

+2 支持
When you have UE4 open try to recompile your C++ source, the WWise plugin will act up and will be unloaded somehow.  This causes a crash when I try to open any other map during that same editor session . After restarting the editor it will show a pop up message saying:

"Plugin Wwise failed to load because module 'AudiokineticTools' could not be loaded. There may be an operating system error or the module may not be properly set up"

Only way to fix is to recompile your source without hot reloading which you do by compiling while the editor is not open. Is there a permanent solution to this issue?
Dominic M. (120 ポイント) General Discussion
This is happening to me too (4.21.2). Have also been trying to install Wwise as an Unreal Engine plugin, but that also doesn't work (won't compile as soon as I include the AKSoundEngine header - there is at least one other ignored question here about it). Basically finding WWise for Unreal C++ useless. Did you ever figure anything out? Thanks.

回答 1

0 支持
Note: Unreal "Project" plugins 100% break hot reloading since around 4.15 (more or less - I lost the source confirming this). The only solution is to use Engine plugins. WWise's website only provides steps to build Wwise into an Unreal source engine build.

To build Wwise for a precompiled engine installed from the Epic Launcher, you must follow these steps:

Reference: http://kantandev.com/articles/ue4-plugins
Reference: RunUAT.bat BuildPlugin -plugin=[path/to/pluginname.uplugin] -package=[path/to/output/directory]

1) Integrate it into an empty project using WWise Launcher
2) Fix #include "Paths.h" to #include "Misc/Paths.h" in AkJsonFactory.cpp (otherwise it won't compile)
3) Build an Engine plugin using the above blog command line
4) Add any required folders (e.g. Include, Mac, and x64_vc150) to the engine plugin as indicated here https://www.audiokinetic.com/library/edge/?source=UE4&id=installation.html
Kyle W. (290 ポイント)
...