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

0 支持
Greetings everyone.

I'm new to Wwise, and I know that there is an Integration for UE4, but the only way I know how to use it is through Blueprints.

I want to use the same functionalities but with C++ code in UE4. I did some research but I couldn't find any tutorial to start with.

Can anyone point me to a tutorial using UE4 C++ to implement Wwise functionality, that would be great. A documentation would help too.

And thank you.
Aissa B. (280 ポイント) General Discussion

回答 1

+1 支持
 
ベストアンサー
What I did was installing Wwise as a game plugin with the Wwise launcher and "Integrate Wwise to my projet" button, then in your Visual Studio project you have access to the code under the Plugins/Wwise folder.

 

I had also to add those line to the "ProjetName.Build.cs" file :

        PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "AIModule", "GameplayTasks", "UMG" });

        PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore", "AkAudio" });

 

Let me know if it worked for you
Alexandre S. (560 ポイント)
Aissa B. 選択
Yep, I actually figured out that I didn't add "AkAudio" to my dependencies. Thanks for the response anyway, I marked it as an answer.
...