mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-24 07:43:56 +00:00
hard songs and unlockables
This commit is contained in:
parent
ae50142583
commit
b94cd258c7
|
@ -8,7 +8,7 @@ import flixel.text.FlxText;
|
||||||
|
|
||||||
class FreeplayState extends MusicBeatState
|
class FreeplayState extends MusicBeatState
|
||||||
{
|
{
|
||||||
var songs:Array<String> = ["Bopeebo", "Dadbattle", "Fresh", "Tutorial", "Spookeez", "South", "Monster"];
|
var songs:Array<String> = ["Bopeebo", "Dadbattle", "Fresh", "Tutorial"];
|
||||||
|
|
||||||
var selector:FlxText;
|
var selector:FlxText;
|
||||||
var curSelected:Int = 0;
|
var curSelected:Int = 0;
|
||||||
|
@ -17,6 +17,12 @@ class FreeplayState extends MusicBeatState
|
||||||
|
|
||||||
override function create()
|
override function create()
|
||||||
{
|
{
|
||||||
|
if (StoryMenuState.weekUnlocked[1])
|
||||||
|
{
|
||||||
|
songs.push('Spookeez');
|
||||||
|
songs.push('South');
|
||||||
|
}
|
||||||
|
|
||||||
// LOAD MUSIC
|
// LOAD MUSIC
|
||||||
|
|
||||||
// LOAD CHARACTERS
|
// LOAD CHARACTERS
|
||||||
|
|
Loading…
Reference in a new issue