south charted

This commit is contained in:
Cameron Taylor
2020-10-28 19:47:10 -07:00
parent bb8cb6e428
commit 1e58720c32
12 changed files with 23 additions and 6 deletions

View File

@ -7,7 +7,7 @@ import flixel.text.FlxText;
class FreeplayState extends MusicBeatState
{
var songs:Array<String> = ["Bopeebo", "Dadbattle", "Fresh", "Tutorial", "Spookeez"];
var songs:Array<String> = ["Bopeebo", "Dadbattle", "Fresh", "Tutorial", "Spookeez", "South"];
var selector:FlxText;
var curSelected:Int = 0;
@ -70,6 +70,7 @@ class FreeplayState extends MusicBeatState
{
PlayState.SONG = Song.loadFromJson(songs[curSelected].toLowerCase());
FlxG.switchState(new PlayState());
FlxG.sound.music.stop();
}
}
}