SetSoundVolume method

void SetSoundVolume(
  1. SoundD sound,
  2. double volume
)

Set volume for a sound (1.0 is max level)

Implementation

void SetSoundVolume(
  SoundD sound,
  double volume,
) => run(
  () => _debugLabels.SetSoundVolume(sound, volume),
  () => _flat.SetSoundVolume(
    sound,
    volume,
  ),
);