Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

Installing new plugins in the Wwise launcher and loading them in a project.

+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
asked Nov 22, 2018 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.

answered Apr 17, 2019 by Sho I. (170 points)
...