mirror of
https://github.com/ppy/osu
synced 2025-03-02 01:21:19 +00:00
Add setting to always tint slider ball
This commit is contained in:
parent
c09f384a7e
commit
033ed2e1f5
@ -18,6 +18,7 @@ namespace osu.Game.Rulesets.Osu.Configuration
|
||||
base.InitialiseDefaults();
|
||||
Set(OsuRulesetSetting.SnakingInSliders, true);
|
||||
Set(OsuRulesetSetting.SnakingOutSliders, true);
|
||||
Set(OsuRulesetSetting.AlwaysTintSliderBall, true);
|
||||
Set(OsuRulesetSetting.ShowCursorTrail, true);
|
||||
}
|
||||
}
|
||||
@ -26,6 +27,7 @@ namespace osu.Game.Rulesets.Osu.Configuration
|
||||
{
|
||||
SnakingInSliders,
|
||||
SnakingOutSliders,
|
||||
AlwaysTintSliderBall,
|
||||
ShowCursorTrail
|
||||
}
|
||||
}
|
||||
|
@ -35,6 +35,11 @@ namespace osu.Game.Rulesets.Osu.UI
|
||||
Bindable = config.GetBindable<bool>(OsuRulesetSetting.SnakingOutSliders)
|
||||
},
|
||||
new SettingsCheckbox
|
||||
{
|
||||
LabelText = "Always tint slider ball with combo colour",
|
||||
Bindable = config.GetBindable<bool>(OsuRulesetSetting.AlwaysTintSliderBall)
|
||||
},
|
||||
new SettingsCheckbox
|
||||
{
|
||||
LabelText = "Cursor trail",
|
||||
Bindable = config.GetBindable<bool>(OsuRulesetSetting.ShowCursorTrail)
|
||||
|
Loading…
Reference in New Issue
Block a user