mirror of
https://github.com/ppy/osu
synced 2024-12-15 19:36:34 +00:00
Add a keybinding for selecting the previous random beatmap
Also gave the new actions more meaningful names
This commit is contained in:
parent
030b55ae85
commit
55953b9e85
@ -58,9 +58,10 @@ namespace osu.Game.Input.Bindings
|
||||
|
||||
public IEnumerable<KeyBinding> SongSelectKeyBindings => new[]
|
||||
{
|
||||
new KeyBinding(InputKey.F1, GlobalAction.ToggleMods),
|
||||
new KeyBinding(InputKey.F2, GlobalAction.SelectRandom),
|
||||
new KeyBinding(InputKey.F3, GlobalAction.ToggleOptions)
|
||||
new KeyBinding(InputKey.F1, GlobalAction.ToggleModSelection),
|
||||
new KeyBinding(InputKey.F2, GlobalAction.SelectNextRandom),
|
||||
new KeyBinding(new[] { InputKey.Shift, InputKey.F2 }, GlobalAction.SelectPreviousRandom),
|
||||
new KeyBinding(InputKey.F3, GlobalAction.ToggleBeatmapOptions)
|
||||
};
|
||||
|
||||
public IEnumerable<KeyBinding> AudioControlKeyBindings => new[]
|
||||
@ -115,13 +116,16 @@ namespace osu.Game.Input.Bindings
|
||||
|
||||
// Song select keybindings
|
||||
[Description("Toggle mod selection overlay")]
|
||||
ToggleMods,
|
||||
ToggleModSelection,
|
||||
|
||||
[Description("Select a random beatmap")]
|
||||
SelectRandom,
|
||||
SelectNextRandom,
|
||||
|
||||
[Description("Select the last random beatmap")]
|
||||
SelectPreviousRandom,
|
||||
|
||||
[Description("Toggle beatmap options overlay")]
|
||||
ToggleOptions,
|
||||
ToggleBeatmapOptions,
|
||||
|
||||
// In-Game Keybindings
|
||||
[Description("Skip cutscene")]
|
||||
|
Loading…
Reference in New Issue
Block a user