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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 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
2016-11-11 06:40:42 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Localisation;
2016-11-09 11:38:40 +08:00
using osu.Game.Configuration;
using osu.Game.Graphics.UserInterface;
2021-08-12 10:48:29 +08:00
using osu.Game.Localisation;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Settings.Sections.UserInterface
2016-11-11 06:40:42 +08:00
{
public class GeneralSettings : SettingsSubsection
2016-11-11 06:40:42 +08:00
{
2021-08-12 10:48:29 +08:00
protected override LocalisableString Header => UserInterfaceStrings.GeneralHeader;
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
2016-11-09 11:38:40 +08:00
{
Children = new Drawable[]
2016-11-09 11:38:40 +08:00
{
new SettingsCheckbox
{
2021-08-12 10:48:29 +08:00
LabelText = UserInterfaceStrings.CursorRotation,
Current = config.GetBindable<bool>(OsuSetting.CursorRotation)
},
new SettingsSlider<float, SizeSlider<float>>
2020-11-30 15:14:15 +08:00
{
2021-08-12 10:48:29 +08:00
LabelText = UserInterfaceStrings.MenuCursorSize,
2020-11-30 15:14:15 +08:00
Current = config.GetBindable<float>(OsuSetting.MenuCursorSize),
KeyboardStep = 0.01f
},
new SettingsCheckbox
2016-11-11 06:40:42 +08:00
{
2021-08-12 10:48:29 +08:00
LabelText = UserInterfaceStrings.Parallax,
Current = config.GetBindable<bool>(OsuSetting.MenuParallax)
2016-11-11 06:40:42 +08:00
},
new SettingsSlider<double, TimeSlider>
{
LabelText = UserInterfaceStrings.HoldToConfirmActivationTime,
Current = config.GetBindable<double>(OsuSetting.UIHoldActivationDelay),
Keywords = new[] { @"delay" },
KeyboardStep = 50
},
2016-11-11 06:40:42 +08:00
};
}
}
}