1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-31 20:30:20 +08:00

Use left mouse as alternative default binding for catch dash

This mirrors stable. Although the way stable does this is pretty dodgy,
see:
	https://github.com/peppy/osu-stable-reference/blob/master/osu!/GameModes/Play/Rulesets/Fruits/RulesetFruits.cs#L274-L275
This commit is contained in:
Bartłomiej Dach
2023-10-17 09:30:44 +02:00
Unverified
parent 828cedea33
commit 79a4b985fe
+1 -1
View File
@@ -54,7 +54,7 @@ namespace osu.Game.Rulesets.Catch
new KeyBinding(InputKey.X, CatchAction.MoveRight),
new KeyBinding(InputKey.Right, CatchAction.MoveRight),
new KeyBinding(InputKey.Shift, CatchAction.Dash),
new KeyBinding(InputKey.Shift, CatchAction.Dash),
new KeyBinding(InputKey.MouseLeft, CatchAction.Dash),
};
public override IEnumerable<Mod> ConvertFromLegacyMods(LegacyMods mods)