menu
 

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

0 支持
Hello Audiokinetic,

The "Generate SoundBanks" item recently disappeared from the "Build options" menu in my UE4 editor. Do you know what I could do to restore it?

I am using UE v4.5.1 and Wwise v2014.1 Build 5158. Thanks.
Johann L. (480 ポイント) General Discussion

回答 1

+2 支持
 
ベストアンサー
Never mind, I fixed the issue.

It seems that the integration code for Wwise v2014 with UE4.5 has the following bug:

In "UE4\Engine\Source\Editor\UnrealEd\Private\Editor.cpp" line 514, the "AudiokineticTools" module is loaded by the "UEditorEngine::Init" function.

In "UE4\Engine\Source\Editor\UnrealEd\Private\Editor.cpp" line 547, the "LevelEditor" module is loaded by the "UEditorEngine::Init" function.

In "UE4\Engine\Source\Developer\AudiokineticTools\Private\AudiokineticToolsModule.cpp" line 36, the "LevelEditor" module is required to have been loaded to add the "Generate SoundBanks" item by the "FAudiokineticToolsModule::StartupModule" function.

However, the "LevelEditor" module has not yet been loaded when the "FAudiokineticToolsModule::StartupModule" function executes.

Therefore, the "Generate SoundBanks" item is not added by the "FAudiokineticToolsModule::StartupModule" function.
Johann L. (480 ポイント)
...