week score lerp fix INSPIRED BY PR #447 BY @jvc2

https://github.com/ninjamuffin99/Funkin/pull/447
This commit is contained in:
MtH 2021-03-29 17:18:25 +02:00
parent f067ebd8e9
commit 04ad093ef0
1 changed files with 3 additions and 0 deletions

View File

@ -227,6 +227,9 @@ class StoryMenuState extends MusicBeatState
// scoreText.setFormat('VCR OSD Mono', 32);
lerpScore = Math.floor(FlxMath.lerp(lerpScore, intendedScore, 0.5));
if (Math.abs(lerpScore - intendedScore) <= 10)
lerpScore = intendedScore;
scoreText.text = "WEEK SCORE:" + lerpScore;
txtWeekTitle.text = weekNames[curWeek].toUpperCase();