Add a game setting to disable the layer

This commit is contained in:
Lucas A
2020-03-30 12:59:39 +02:00
parent 00c1ff993a
commit 3cae0cedee
3 changed files with 15 additions and 1 deletions

View File

@ -53,6 +53,12 @@ namespace osu.Game.Overlays.Settings.Sections.Gameplay
Keywords = new[] { "hp", "bar" }
},
new SettingsCheckbox
{
LabelText = "Fade playfield to red when health is low",
Bindable = config.GetBindable<bool>(OsuSetting.FadePlayfieldWhenHealthLow),
Keywords = new[] { "hp", "low", "playfield", "red" }
},
new SettingsCheckbox
{
LabelText = "Always show key overlay",
Bindable = config.GetBindable<bool>(OsuSetting.KeyOverlay)