1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-11-22 13:13:47 +00:00

small shit dont worry bout it

This commit is contained in:
Cameron Taylor 2021-11-28 20:26:47 -05:00
parent a24f6c533a
commit 2d3fb5c29a

View file

@ -372,6 +372,7 @@ class PlayState extends MusicBeatState
FlxG.cameras.add(camHUD, false);
}
// a lot of this stage code will be cleaned up more when the stage load shit is more fleshed out! For now it's still a lot of hardcoded shit!!
function initStageBullshit()
{
switch (SONG.song.toLowerCase())
@ -1944,12 +1945,10 @@ class PlayState extends MusicBeatState
moveTank();
}
super.update(elapsed);
super.update(elapsed); // idk if there's a particular reason why some code is before super.update(), and some is after. Prob nothing too much to worry about.
wiggleShit.update(elapsed);
scoreTxt.text = "Score:" + songScore;
var androidPause:Bool = false;
#if android
@ -1992,6 +1991,9 @@ class PlayState extends MusicBeatState
#end
}
// UI UPDATES
scoreTxt.text = "Score:" + songScore;
if (FlxG.keys.justPressed.EIGHT)
FlxG.switchState(new ui.animDebugShit.DebugBoundingState());