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.

A global RTPC event sets the value of two different game objects to two different values. What could be causing this?

0 votes
The event in question is global and sets a parameter to 100. On a game object it actually doesn't affect, the profiler shows the value switch to 100, but on the game object I need it to alter, the value gets stuck at 40. I have tried bypassing slew rate and it doesn't change anything. I also tried making the event game-object scoped and linking it to the game object in question, but the same result occurs - stuck at 40. The parameter in question affects the game object volume, which is definitely scaled to 100. I can't think of anything that could be causing this, and my problem solving tracks have hit dead ends on every attempt to dig this out. Any ideas?
asked Dec 5, 2016 in General Discussion by Beatrix Moersch (3,280 points)

1 Answer

0 votes
 
Best answer
For anyone who may have a similar problem - I discovered the issue. There was a line of code on the Unity side which was directly contradicting the RTPC by setting volume to 40. Apparently direct code takes precedence.
answered Dec 6, 2016 by Beatrix Moersch (3,280 points)
...