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.

Mis Spell on Wwise SDK documentation for plugin development

0 votes

Just wanted to address the tiny mistake I found while reading the SDK. After struggling for a while to make my code work, I found out that the code under "Managing Plug-in Media" has several mistakes.

Link to SDK: https://www.audiokinetic.com/library/edge/?source=SDK&id=effectplugin_media.html

Original Code: 

class MyPluginBackend : public AK::Wwise::Plugin::AudioPlugin

: public AK::Wwise::Plugin::RequestObjectMedia

, public AK::Wwise::Plugin::NotificationsObjectMedia

, public AK::Wwise::Plugin::RequestHost

{

void NotifyPluginMediaChanged() override

 

Correct one:

class MyPluginBackend : public AK::Wwise::Plugin::AudioPlugin

, public AK::Wwise::Plugin::RequestObjectMedia

, public AK::Wwise::Plugin::Notifications::ObjectMedia

, public AK::Wwise::Plugin::RequestHost

{

void NotifyPluginMediaChanged() override

 

Thanks.~

asked Nov 25, 2021 in General Discussion by Zilu C. (130 points)

1 Answer

0 votes
 
Best answer
Thank you very much for this report, this will be fixed in the next version!
answered Nov 25, 2021 by Samuel L. (Audiokinetic) (23,220 points)
selected Nov 25, 2021 by Samuel L. (Audiokinetic)
...