1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-08 08:37:40 +08:00

Merge pull request #3895 from peppy/default-osu-keys

Change osu! default keys back to Z/X
This commit is contained in:
Dean Herbert 2018-12-22 15:28:02 +09:00 committed by GitHub
commit a15091be49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,8 +31,8 @@ namespace osu.Game.Rulesets.Osu
public override IEnumerable<KeyBinding> GetDefaultKeyBindings(int variant = 0) => new[]
{
new KeyBinding(InputKey.A, OsuAction.LeftButton),
new KeyBinding(InputKey.S, OsuAction.RightButton),
new KeyBinding(InputKey.Z, OsuAction.LeftButton),
new KeyBinding(InputKey.X, OsuAction.RightButton),
new KeyBinding(InputKey.MouseLeft, OsuAction.LeftButton),
new KeyBinding(InputKey.MouseRight, OsuAction.RightButton),
};