menu
 

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

+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 ポイント)
...