1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 04:49:40 +08:00
osu-lazer/osu.Game/Screens/Play/PlayerSettings/InputSettings.cs

40 lines
1.2 KiB
C#
Raw Normal View History

2018-05-09 22:22:37 +08:00
// 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.Configuration;
namespace osu.Game.Screens.Play.PlayerSettings
{
public class InputSettings : PlayerSettingsGroup
{
protected override string Title => "Input settings";
private readonly PlayerCheckbox mouseWheelCheckbox;
private readonly PlayerCheckbox mouseButtonsCheckbox;
public InputSettings()
{
Children = new Drawable[]
{
mouseWheelCheckbox = new PlayerCheckbox
{
LabelText = "Disable mouse wheel"
2018-05-09 22:22:37 +08:00
},
mouseButtonsCheckbox = new PlayerCheckbox
{
LabelText = "Disable mouse buttons"
2018-05-09 22:22:37 +08:00
}
};
}
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
mouseWheelCheckbox.Bindable = config.GetBindable<bool>(OsuSetting.MouseDisableWheel);
mouseButtonsCheckbox.Bindable = config.GetBindable<bool>(OsuSetting.MouseDisableButtons);
}
}
}