mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Change range to 0-100% and rename to "normalisation"
This commit is contained in:
@ -16,12 +16,12 @@ namespace osu.Game.Overlays.Settings.Sections.Gameplay
|
||||
{
|
||||
protected override LocalisableString Header => GameplaySettingsStrings.BeatmapHeader;
|
||||
|
||||
private readonly BindableFloat comboColourBrightness = new BindableFloat();
|
||||
private readonly BindableFloat comboColourNormalisation = new BindableFloat();
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(OsuConfigManager config)
|
||||
{
|
||||
config.BindWith(OsuSetting.ComboColourBrightness, comboColourBrightness);
|
||||
config.BindWith(OsuSetting.ComboColourNormalisation, comboColourNormalisation);
|
||||
|
||||
Children = new Drawable[]
|
||||
{
|
||||
@ -47,8 +47,8 @@ namespace osu.Game.Overlays.Settings.Sections.Gameplay
|
||||
},
|
||||
new SettingsSlider<float>
|
||||
{
|
||||
LabelText = "Combo colour brightness",
|
||||
Current = comboColourBrightness,
|
||||
LabelText = "Combo colour normalisation",
|
||||
Current = comboColourNormalisation,
|
||||
DisplayAsPercentage = true,
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user