Hi if anyone is familiar with Wwise need some help, we're adding an RTPC to control pitch in the following code
[Header("Sound Settings")]
public string engineSoundID = "Speed";
public float truckSpeed = 0;
public float maxTruckSpeed = 100;
public void UpdateSpeed(Component sender, object data)
{
if (data is not float speed) return;
truckSpeed = (speed / maxTruckSpeed) * 100;
Debug.Log(truckSpeed);
AkSoundEngine.SetRTPCValue(engineSoundID, truckSpeed, gameObject);
}```
we were using a single main bank and it worked properly
we have now switched to seperating the banks by category, so now a Vehicle Sound bank is attached to the truck where the AKAmbient components are as well, the sound plays but the RTPC no longer changes the sound and we don't know why
So to reiterate, the only thing we changed before it stopped working was making seperate banks and this one is dedicated to the Vehicle sounds


realawok was muted.
wouldn't/shouldn't
No
