mirror of
https://github.com/osukey/osukey.git
synced 2025-05-23 14:37:39 +09:00
BackgroundModes shouldn't handle the escape key themselves.
This commit is contained in:
parent
08728b84d1
commit
f2f3b69eee
@ -24,6 +24,12 @@ namespace osu.Game.GameModes
|
|||||||
const float transition_length = 500;
|
const float transition_length = 500;
|
||||||
const float x_movement_amount = 50;
|
const float x_movement_amount = 50;
|
||||||
|
|
||||||
|
protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
|
||||||
|
{
|
||||||
|
//we don't want to handle escape key.
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
public override void Load()
|
public override void Load()
|
||||||
{
|
{
|
||||||
base.Load();
|
base.Load();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user