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

Hi Wwise and everyone! I'm trying to integrate Wwise into my new Unity project. But it ended up with errors below:

Game integration: Pushing progress: A script compilation error occurred during the execution in Unity. Please click Open Log to review the Unity log.
Assets/Wwise/Deployment/API/Handwritten/Common/AkCommonPlatformSettings.cs(246,25): error CS1501: No overload for method `Combine' takes `7' arguments

Then I go into the new temp project created by Wwise during the integration. Find this scripts AkCommonPlatformSettings.cs(246,25) and I found out it was like this:

return System.IO.Path.Combine(UnityEngine.Application.dataPath, "Wwise", "Deployment", "Plugins", "Windows", "x86_64", "DSP");

According to the errors info. I tried changing it into:

return System.IO.Path.Combine(UnityEngine.Application.dataPath, @"Wwise/Deployment/Plugins/Windows/x86_64/DSP");

Then, the project seems working fine now, I can use C# scripts to post event on game objects. But I do wonder:

WHY is this happening? WHAT should I do to let the auto integration success? So scared of bugs that I can't foresee in changing code like this.

My Wwise version is 2019.1.9.7221. My Unity version is 2017.4.31f1.

I checked out supported Unity versions on the wwise versions site, and it says Unity 2017.4 is supported.

Is there something wrong with my coding enviroment? I use VS2019 and its version is 16.8.4. With developement enviroments for windowsApp, Unity and C++ for Unreal.

Please reply here if you got any idea about this problem! Thanks!

in General Discussion by lingchu L. (100 points)

Please sign-in or register to answer this question.

...