1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-07-15 14:45:56 +00:00

diffifulcty adder in progress while i go to library loL!

This commit is contained in:
Cameron Taylor 2022-02-04 12:04:59 -05:00
parent db1d9c1824
commit 2c91016e76

View file

@ -263,6 +263,14 @@ class ChartingState extends MusicBeatState
});
difficultyDropDown.selectedLabel = SongLoad.curDiff;
var difficultyAdder = new FlxUIInputText(130, 230, 100, "", 12);
var addDiff:FlxButton = new FlxButton(130, 250, "Add Difficulty", function()
{
difficultyAdder.text = "";
// something to regenerate difficulties
});
var tab_group_song = new FlxUI(null, UI_box);
tab_group_song.name = "Song";
tab_group_song.add(UI_songTitle);
@ -279,6 +287,8 @@ class ChartingState extends MusicBeatState
tab_group_song.add(player1DropDown);
tab_group_song.add(player2DropDown);
tab_group_song.add(difficultyDropDown);
tab_group_song.add(difficultyAdder);
tab_group_song.add(addDiff);
UI_box.addGroup(tab_group_song);
UI_box.scrollFactor.set();