Add keyboard shortcut to start test mode in editor

This commit is contained in:
Dean Herbert
2021-11-12 14:13:11 +09:00
parent 321aa456a7
commit e891c0ce53
3 changed files with 14 additions and 1 deletions

View File

@ -468,6 +468,10 @@ namespace osu.Game.Screens.Edit
menuBar.Mode.Value = EditorScreenMode.Verify;
return true;
case GlobalAction.EditorTestGameplay:
testGameplay();
return true;
default:
return false;
}