1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00

Added "Use beatmap hitsounds" button to volume section of settings

This commit is contained in:
Bear Daniel 2019-01-18 02:33:39 -06:00
parent 42fa04beee
commit 858541bcf4

View File

@ -21,6 +21,7 @@ namespace osu.Game.Overlays.Settings.Sections.Audio
new SettingsSlider<double> { LabelText = "Master (window inactive)", Bindable = config.GetBindable<double>(OsuSetting.VolumeInactive), KeyboardStep = 0.01f },
new SettingsSlider<double> { LabelText = "Effect", Bindable = audio.VolumeSample, KeyboardStep = 0.01f },
new SettingsSlider<double> { LabelText = "Music", Bindable = audio.VolumeTrack, KeyboardStep = 0.01f },
new SettingsCheckbox { LabelText = "Use beatmap hitsounds", Bindable = config.GetBindable<bool>(OsuSetting.BeatmapHitsounds) },
};
}
}