2019-01-24 16:43:03 +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.Graphics;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Input
|
|
|
|
|
{
|
2021-03-12 17:36:28 +08:00
|
|
|
|
public class BindingSettings : SettingsSubsection
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-03-12 17:36:28 +08:00
|
|
|
|
protected override string Header => "Shortcut and gameplay bindings";
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-03-12 17:36:28 +08:00
|
|
|
|
public BindingSettings(KeyBindingPanel keyConfig)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new SettingsButton
|
|
|
|
|
{
|
2021-03-12 17:36:28 +08:00
|
|
|
|
Text = "Configure",
|
2020-01-15 03:26:54 +08:00
|
|
|
|
TooltipText = "change global shortcut keys and gameplay bindings",
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Action = keyConfig.ToggleVisibility
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|