Merge pull request #9 from CarsonKompon/fix-editor-ctrl-n

Whoops I never added CTRL+N (Button worked but shortcut didn't)
This commit is contained in:
Jenny Crowe 2022-02-26 00:14:47 -07:00 committed by GitHub
commit 3cad277f86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -169,7 +169,11 @@ namespace RhythmHeavenMania.Editor
if (Input.GetKey(KeyCode.LeftControl)) if (Input.GetKey(KeyCode.LeftControl))
{ {
if (Input.GetKeyDown(KeyCode.O)) if (Input.GetKeyDown(KeyCode.N))
{
LoadRemix("");
}
else if (Input.GetKeyDown(KeyCode.O))
{ {
OpenRemix(); OpenRemix();
} }