I use this:
err = channel->setVolume(someVolumeBetween0and1);
Even if err is FMOD_OK, the volume doesn't change. Am I doing something wrong? Is there any way to change the volume for a sound(channel)? Is there other range for volume instead of [0, 1]?
Thanks!
EDIT: I use setVolume just after this:
err = soundSystem->playSound(FMOD_CHANNEL_FREE, sound, false, &channel);