diff --git a/source/funkin/play/PlayState.hx b/source/funkin/play/PlayState.hx index 990d918ee..afd7389d4 100644 --- a/source/funkin/play/PlayState.hx +++ b/source/funkin/play/PlayState.hx @@ -1442,8 +1442,12 @@ class PlayState extends MusicBeatState implements IHook } else { - trace('WENT BACK TO FREEPLAY??'); + trace('WENT TO RESULTS SCREEN!'); // unloadAssets(); + + persistentUpdate = false; + vocals.stop(); + var res:ResultState = new ResultState(); res.camera = camHUD; openSubState(res); diff --git a/source/funkin/play/ResultState.hx b/source/funkin/play/ResultState.hx index 5126309af..04931b211 100644 --- a/source/funkin/play/ResultState.hx +++ b/source/funkin/play/ResultState.hx @@ -7,7 +7,10 @@ class ResultState extends MusicBeatSubstate { override function create() { + FlxG.sound.playMusic(Paths.music("resultsNormal")); + var bg:FlxSprite = new FlxSprite().makeGraphic(FlxG.width, FlxG.height, 0xFF000000); + bg.alpha = 0.8; bg.scrollFactor.set(); add(bg); var results:FlxText = new FlxText(70, 70, 0, "RESULTS:", 32);