From 2d3fb5c29a678dc57c631e192586c849e5f1945a Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Sun, 28 Nov 2021 20:26:47 -0500 Subject: [PATCH] small shit dont worry bout it --- source/PlayState.hx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index 8f9173fcf..55cd689de 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -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());