adding setting to adjust blur of the background of the song select screen

This commit is contained in:
Jérémiah DÉCOMBE
2023-01-23 13:53:31 +01:00
parent d695214ae1
commit 6daa364779
4 changed files with 44 additions and 3 deletions

View File

@ -42,6 +42,11 @@ namespace osu.Game.Overlays.Settings.Sections.UserInterface
LabelText = UserInterfaceStrings.ModSelectHotkeyStyle,
Current = config.GetBindable<ModSelectHotkeyStyle>(OsuSetting.ModSelectHotkeyStyle),
ClassicDefault = ModSelectHotkeyStyle.Classic
},
new SettingsSlider<float>
{
LabelText = UserInterfaceStrings.BeatmapSelectionBlurLevel,
Current = config.GetBindable<float>(OsuSetting.BeatmapSelectionBlurLevel)
}
};
}