1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:47:24 +08:00
osu-lazer/osu.Game.Rulesets.Osu/UI/OsuSettingsSubsection.cs

46 lines
1.4 KiB
C#
Raw Normal View History

2019-01-25 18:17:48 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Overlays.Settings;
2019-01-23 18:46:53 +08:00
using osu.Game.Rulesets.Osu.Configuration;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Osu.UI
{
2019-01-23 18:46:53 +08:00
public class OsuSettingsSubsection : RulesetSettingsSubsection
2018-04-13 17:19:50 +08:00
{
protected override string Header => "osu!";
2019-01-23 18:46:53 +08:00
public OsuSettingsSubsection(Ruleset ruleset)
: base(ruleset)
{
}
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
2019-01-23 18:46:53 +08:00
private void load()
2018-04-13 17:19:50 +08:00
{
var config = (OsuRulesetConfigManager)Config;
2019-01-23 18:46:53 +08:00
2018-04-13 17:19:50 +08:00
Children = new Drawable[]
{
new SettingsCheckbox
{
LabelText = "Snaking in sliders",
Bindable = config.GetBindable<bool>(OsuRulesetSetting.SnakingInSliders)
2018-04-13 17:19:50 +08:00
},
new SettingsCheckbox
{
LabelText = "Snaking out sliders",
Bindable = config.GetBindable<bool>(OsuRulesetSetting.SnakingOutSliders)
2018-04-13 17:19:50 +08:00
},
new SettingsCheckbox
{
2019-04-04 16:18:53 +08:00
LabelText = "Cursor trail",
Bindable = config.GetBindable<bool>(OsuRulesetSetting.ShowCursorTrail)
},
2018-04-13 17:19:50 +08:00
};
}
}
}