1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 06:47:36 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/UserInterface/GeneralSettings.cs

52 lines
1.8 KiB
C#
Raw Normal View History

// 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.Framework.Localisation;
2018-04-13 17:19:50 +08:00
using osu.Game.Configuration;
using osu.Game.Graphics.UserInterface;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Settings.Sections.UserInterface
2018-04-13 17:19:50 +08:00
{
public class GeneralSettings : SettingsSubsection
2018-04-13 17:19:50 +08:00
{
protected override LocalisableString Header => "General";
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
Children = new Drawable[]
2018-04-13 17:19:50 +08:00
{
new SettingsCheckbox
{
LabelText = "Rotate cursor when dragging",
Current = config.GetBindable<bool>(OsuSetting.CursorRotation)
},
2020-11-30 15:14:15 +08:00
new SettingsSlider<float, SizeSlider>
{
LabelText = "Menu cursor size",
Current = config.GetBindable<float>(OsuSetting.MenuCursorSize),
KeyboardStep = 0.01f
},
2018-04-13 17:19:50 +08:00
new SettingsCheckbox
{
LabelText = "Parallax",
Current = config.GetBindable<bool>(OsuSetting.MenuParallax)
2018-04-13 17:19:50 +08:00
},
new SettingsSlider<float, TimeSlider>
{
LabelText = "Hold-to-confirm activation time",
Current = config.GetBindable<float>(OsuSetting.UIHoldActivationDelay),
KeyboardStep = 50
},
2018-04-13 17:19:50 +08:00
};
}
private class TimeSlider : OsuSliderBar<float>
{
public override LocalisableString TooltipText => Current.Value.ToString(@"N0") + "ms";
}
2018-04-13 17:19:50 +08:00
}
}