SetSoundVolume method
Implementation
@override
void SetSoundVolume(
SoundD sound,
num volume,
) => run(
() => RaylibDebugLabels.SetSoundVolume(sound, volume),
() => rl.Audio.SetSoundVolume(
rl.Temp.Sound$.Ref1(sound).ref,
volume.toDouble(),
),
);