add setting to toggle the gameplay cursor trail

This commit is contained in:
Unknown
2019-01-23 14:27:34 +01:00
parent 4d310c3226
commit 481f33d17b
4 changed files with 19 additions and 7 deletions

View File

@ -34,6 +34,11 @@ namespace osu.Game.Rulesets.Osu.UI
LabelText = "Snaking out sliders",
Bindable = config.GetBindable<bool>(OsuSetting.SnakingOutSliders)
},
new SettingsCheckbox
{
LabelText = "Show cursor trail",
Bindable = config.GetBindable<bool>(OsuSetting.ShowCursorTrail)
},
};
}
}