menu
 

La section Questions et réponses de la communauté Audiokinetic est un forum où les utilisateurs de Wwise et de Strata peuvent poser des questions et répondre à celles des autres membres de la communauté. Si vous souhaitez obtenir une réponse de la part de l'équipe de soutien technique d'Audiokinetic, veillez à utiliser le formulaire de Tickets de Soutien.

0 votes
Hi,

I have a blend container which I've added a blend track to controller by a custom Game Parameter. In unity, my script attempts to change the RTCP value, however no change is seen.

        sizeValue -=  (speed * Time.deltaTime);
        AkSoundEngine.SetRTPCValue("Elevation", sizeValue, gameObject);
        float value = 0f;
        int rtcpType = 0;
        AkSoundEngine.GetRTPCValue("Elevation", gameObject, 1, out value, ref rtcpType);

 

that is my code within update. I print out the value from GetRTCP and it always returns the original setting. SizeValue is printed too and is definitely decreasing.
It seems that        
        AkSoundEngine.SetRTPCValue("Elevation", sizeValue, gameObject);

just doesn't work.
Is there something within the Wwise side I need to do before I can use my custom RTCP? I've checked syntax and the spelling is exactly the same.

Thanks in advance
Zoe
dans General Discussion par Zoe W. (150 points)
Same problem. Did you found solution?

Please sign-in or register to answer this question.

...