Add keybind to disable mouse buttons

This commit is contained in:
smoogipoo
2018-05-02 19:37:47 +09:00
parent 420e50b6da
commit d4ada3000c
4 changed files with 16 additions and 2 deletions

View File

@ -26,7 +26,8 @@ namespace osu.Game.Input.Bindings
{
new KeyBinding(InputKey.F8, GlobalAction.ToggleChat),
new KeyBinding(InputKey.F9, GlobalAction.ToggleSocial),
new KeyBinding(InputKey.F12,GlobalAction.TakeScreenshot),
new KeyBinding(InputKey.F10, GlobalAction.ToggleMouseButtons),
new KeyBinding(InputKey.F12, GlobalAction.TakeScreenshot),
new KeyBinding(new[] { InputKey.Control, InputKey.Alt, InputKey.R }, GlobalAction.ResetInputSettings),
new KeyBinding(new[] { InputKey.Control, InputKey.T }, GlobalAction.ToggleToolbar),
@ -75,6 +76,8 @@ namespace osu.Game.Input.Bindings
[Description("Quick Retry (Hold)")]
QuickRetry,
[Description("Toggle gameplay mouse buttons")]
ToggleMouseButtons,
[Description("Take screenshot")]
TakeScreenshot
}