mirror of
https://github.com/ppy/osu
synced 2024-12-15 03:16:17 +00:00
46 lines
1.4 KiB
C#
46 lines
1.4 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Overlays.Settings;
|
|
using osu.Game.Rulesets.Osu.Configuration;
|
|
|
|
namespace osu.Game.Rulesets.Osu.UI
|
|
{
|
|
public class OsuSettingsSubsection : RulesetSettingsSubsection
|
|
{
|
|
protected override string Header => "osu!";
|
|
|
|
public OsuSettingsSubsection(Ruleset ruleset)
|
|
: base(ruleset)
|
|
{
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
var config = (OsuConfigManager)Config;
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
new SettingsCheckbox
|
|
{
|
|
LabelText = "Snaking in sliders",
|
|
Bindable = config.GetBindable<bool>(OsuSetting.SnakingInSliders)
|
|
},
|
|
new SettingsCheckbox
|
|
{
|
|
LabelText = "Snaking out sliders",
|
|
Bindable = config.GetBindable<bool>(OsuSetting.SnakingOutSliders)
|
|
},
|
|
new SettingsCheckbox
|
|
{
|
|
LabelText = "Show cursor trail",
|
|
Bindable = config.GetBindable<bool>(OsuSetting.ShowCursorTrail)
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|