Limit minimum brightness of combo colours

This commit is contained in:
Dan Balasescu
2022-10-05 17:50:36 +09:00
parent d9c3f5834c
commit 4149235e63
4 changed files with 189 additions and 2 deletions

View File

@ -40,6 +40,12 @@ namespace osu.Game.Overlays.Settings.Sections.Gameplay
LabelText = GraphicsSettingsStrings.StoryboardVideo,
Current = config.GetBindable<bool>(OsuSetting.ShowStoryboard)
},
new SettingsSlider<float>
{
LabelText = "Combo colour brightness",
Current = config.GetBindable<float>(OsuSetting.ComboColourBrightness),
DisplayAsPercentage = true
}
};
}
}