Community Q&A

Welcome to Audiokinetic’s community-driven Q&A forum. This is the place where Wwise and Strata users help each other out. For direct help from our team, please use the Support Tickets page. To report a bug, use the Bug Report option in the Audiokinetic Launcher. (Note that Bug Reports submitted to the Q&A forum will be rejected. Using our dedicated Bug Report system ensures your report is seen by the right people and has the best chance of being fixed.)

To get the best answers quickly, follow these tips when posting a question:

  • Be Specific: What are you trying to achieve, or what specific issue are you running into?
  • Include Key Details: Include details like your Wwise and game engine versions, operating system, etc.
  • Explain What You've Tried: Let others know what troubleshooting steps you've already taken.
  • Focus on the Facts: Describe the technical facts of your issue. Focusing on the problem helps others find a solution quickly.

0 votes
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.
in General Discussion by Aissa B. (280 points)

1 Answer

+1 vote
 
Best answer
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
by Alexandre S. (560 points)
selected by 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.
...