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.

+1 vote
Hi - first time posting a question here,

 

I am new to Wwise plugin development and have used the development tools to create a template effect and source plugin.

I have then done the premake, build and package steps outlined here (https://www.audiokinetic.com/library/edge/?source=SDK&id=effectplugin__tools.html).

They have installed successfully in the wwise launcher, however, they do not appear in the list of available plugins within any of my wwise projects (neither as source nor effects).

I've also gone through the steps outlined in the troubleshooting docs here to no avail (https://www.audiokinetic.com/library/edge/?source=SDK&id=plugin__troubleshooting.html)

I am using Wwise 2018.1.3 and integrating into Unity 2018.2.5f1.

 

Any help would be greatly appreciated,

Alex
in General Discussion by Alex J. (110 points)

1 Answer

+1 vote

Hi Alex,

I had similar problem and now its done, try build plugin with Release option.
I don't know why but in this page https://www.audiokinetic.com/library/edge/?source=SDK&id=effectplugin__tools.html they said

python "%WWISEROOT%/Scripts/Build/Plugins/wp.py" build Windows_vc140 -c Debug
python "%WWISEROOT%/Scripts/Build/Plugins/wp.py" build Authoring -c Debug

but you don't need to build Debug version, just change them to Release.

python "%WWISEROOT%/Scripts/Build/Plugins/wp.py" build Windows_vc140 -c Release
python
"%WWISEROOT%/Scripts/Build/Plugins/wp.py" build Authoring -c Release

hope this will help.

by Sho I. (170 points)
...