From c2e340ef1900a2d4fda8db038483adefaec7eaf9 Mon Sep 17 00:00:00 2001 From: Cameron Taylor <cameron.taylor.ninja@gmail.com> Date: Sun, 16 Apr 2023 18:57:18 -0400 Subject: [PATCH] variation and hmm fix --- hmm.json | 2 +- source/funkin/play/ResultState.hx | 26 +++++++++++++------------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/hmm.json b/hmm.json index fd04b6b96..0a1c09327 100644 --- a/hmm.json +++ b/hmm.json @@ -30,7 +30,7 @@ "name": "flxanimate", "type": "git", "dir": null, - "ref": "6bc8992", + "ref": "a8976ff", "url": "https://github.com/ninjamuffin99/flxanimate" }, { diff --git a/source/funkin/play/ResultState.hx b/source/funkin/play/ResultState.hx index aef346ec5..59e7292ff 100644 --- a/source/funkin/play/ResultState.hx +++ b/source/funkin/play/ResultState.hx @@ -232,21 +232,21 @@ class ResultState extends MusicBeatSubstate FlxTween.tween(highscoreNew, {y: highscoreNew.y + 10}, 0.8, {ease: FlxEase.quartOut}); }; - if (false) + switch (resultsVariation) { - boyfriend.animation.play('fall'); - boyfriend.visible = true; + case NORMAL: + boyfriend.animation.play('fall'); + boyfriend.visible = true; - new FlxTimer().start((1 / 24) * 22, _ -> { - // plays about 22 frames (at 24fps timing) after bf spawns in - gf.animation.play('clap', true); - gf.visible = true; - }); - } - else - { - bfGfExcellent.visible = true; - bfGfExcellent.playAnimation(""); + new FlxTimer().start((1 / 24) * 22, _ -> { + // plays about 22 frames (at 24fps timing) after bf spawns in + gf.animation.play('clap', true); + gf.visible = true; + }); + case PERFECT: + bfGfExcellent.visible = true; + bfGfExcellent.playAnimation(""); + default: } });