Hey,
I’m porting an fmod designer .fdp file and need some clarification an some values.
volume_randomization:
Range: -60db -> 0db
So how does Fmod use this value?
Example:
Volume: 10db
Volume_Randomization: -30
randomValue = random(0, -30)
volume = Volume + randomValue
OR
randomValue = random(+30, -30)
volume = volume + randomValue
The same question also for pitch_randomization.
Thx alot