Add setting to always tint slider ball

This commit is contained in:
iiSaLMaN 2019-09-20 00:10:28 +03:00
parent c09f384a7e
commit 033ed2e1f5
2 changed files with 7 additions and 0 deletions

View File

@ -18,6 +18,7 @@ namespace osu.Game.Rulesets.Osu.Configuration
base.InitialiseDefaults(); base.InitialiseDefaults();
Set(OsuRulesetSetting.SnakingInSliders, true); Set(OsuRulesetSetting.SnakingInSliders, true);
Set(OsuRulesetSetting.SnakingOutSliders, true); Set(OsuRulesetSetting.SnakingOutSliders, true);
Set(OsuRulesetSetting.AlwaysTintSliderBall, true);
Set(OsuRulesetSetting.ShowCursorTrail, true); Set(OsuRulesetSetting.ShowCursorTrail, true);
} }
} }
@ -26,6 +27,7 @@ namespace osu.Game.Rulesets.Osu.Configuration
{ {
SnakingInSliders, SnakingInSliders,
SnakingOutSliders, SnakingOutSliders,
AlwaysTintSliderBall,
ShowCursorTrail ShowCursorTrail
} }
} }

View File

@ -35,6 +35,11 @@ namespace osu.Game.Rulesets.Osu.UI
Bindable = config.GetBindable<bool>(OsuRulesetSetting.SnakingOutSliders) Bindable = config.GetBindable<bool>(OsuRulesetSetting.SnakingOutSliders)
}, },
new SettingsCheckbox new SettingsCheckbox
{
LabelText = "Always tint slider ball with combo colour",
Bindable = config.GetBindable<bool>(OsuRulesetSetting.AlwaysTintSliderBall)
},
new SettingsCheckbox
{ {
LabelText = "Cursor trail", LabelText = "Cursor trail",
Bindable = config.GetBindable<bool>(OsuRulesetSetting.ShowCursorTrail) Bindable = config.GetBindable<bool>(OsuRulesetSetting.ShowCursorTrail)