mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 08:22:56 +08:00
Update with new input changes from framework.
This commit is contained in:
parent
adc16b0727
commit
1fe6b84dfc
@ -1 +1 @@
|
||||
Subproject commit 45e75163b272b7aa023afec7801ea079aba4ee69
|
||||
Subproject commit 11b1c69d5ff2b212a69ee0bf5cc576a04e510044
|
@ -42,14 +42,14 @@ namespace osu.Game.Modes.Osu
|
||||
{
|
||||
if (mouseDisabled.Value)
|
||||
{
|
||||
mouse.PressedButtons.Remove(MouseButton.Left);
|
||||
mouse.PressedButtons.Remove(MouseButton.Right);
|
||||
mouse.SetPressed(MouseButton.Left, false);
|
||||
mouse.SetPressed(MouseButton.Right, false);
|
||||
}
|
||||
|
||||
if (leftViaKeyboard)
|
||||
mouse.PressedButtons.Add(MouseButton.Left);
|
||||
mouse.SetPressed(MouseButton.Left, true);
|
||||
if (rightViaKeyboard)
|
||||
mouse.PressedButtons.Add(MouseButton.Right);
|
||||
mouse.SetPressed(MouseButton.Right, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -136,7 +136,7 @@ namespace osu.Game.Modes.Replays
|
||||
public ReplayMouseState(Vector2 position, IEnumerable<MouseButton> list)
|
||||
{
|
||||
Position = position;
|
||||
list.ForEach(b => PressedButtons.Add(b));
|
||||
list.ForEach(b => SetPressed(b, true));
|
||||
}
|
||||
}
|
||||
|
||||
@ -148,4 +148,4 @@ namespace osu.Game.Modes.Replays
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user