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

I'm trying to program a metering plugin for wwise with a built-in filter. The meter should control a rtpc in the same manner the stock meter plugin works. However I haven't found out how to access a plugin reference from the plugin sdk. Of course I read the Plugin XML Properties documentation.
Mentioned there is the <reference> element with a typical usecase:

<Reference Name="OutputGameParameter" DisplayName="Output Game Parameter">
     <Restrictions>
         <TypeEnumerationRestriction>
            <Type Name="GameParameter" />
         </TypeEnumerationRestriction>
    </Restrictions>
</Reference>

 When adding this to the properties element it creates a dropdown where I can select the RTPCs, but I'm lost, on how to retrieve this reference and set it for instance in the execute method. I tried adding a <AudioEnginePropertyID> element to the reference and setting a RTPC with the same id. It didn't throw any errors, but also didn't work.
Maybe this is something obvious, as this is a common approach for linking parameters, but I just don't see it and can't find any information about it. I also searched in the plugin context and global context but wasn't able to find anything.
I also tried making a regular property and setting that one and hoped, that the linked rtpc in wwise would change, but that's surely not how it works (and it didn't). Only the stock meter plugin works perfectly like I would expect.

Thanks in advance for any tips. 

in General Discussion by Jonas F. (170 points)
Ran into the same problem. Have u had any answers to this?

Please sign-in or register to answer this question.

...