BULLSHIT CONTROLS

This commit is contained in:
Cameron Taylor
2020-10-21 16:33:43 -07:00
parent 539a5f8550
commit bea3ca7fd8
7 changed files with 853 additions and 69 deletions

View File

@ -49,6 +49,12 @@ class FreeplayState extends MusicBeatState
selector.y = (26 * curSelected) + 30;
if (FlxG.keys.justPressed.ENTER)
{
PlayState.SONG = Song.loadFromJson(songs[curSelected].toLowerCase());
FlxG.switchState(new PlayState());
}
super.update(elapsed);
}
}