1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-06-20 01:02:19 +00:00

Merge branch 'sector-a/story-menu-score' into develop-0.4.0

This commit is contained in:
Cameron Taylor 2024-05-29 16:50:05 -04:00
commit 3ba778606b

View file

@ -306,7 +306,7 @@ class StoryMenuState extends MusicBeatState
{ {
Conductor.instance.update(); Conductor.instance.update();
highScoreLerp = Std.int(MathUtil.smoothLerp(highScoreLerp, highScore, elapsed, 0.5)); highScoreLerp = Std.int(MathUtil.smoothLerp(highScoreLerp, highScore, elapsed, 0.25));
scoreText.text = 'LEVEL SCORE: ${Math.round(highScoreLerp)}'; scoreText.text = 'LEVEL SCORE: ${Math.round(highScoreLerp)}';
@ -466,6 +466,9 @@ class StoryMenuState extends MusicBeatState
// Disable the funny music thing for now. // Disable the funny music thing for now.
// funnyMusicThing(); // funnyMusicThing();
} }
updateText();
refresh();
} }
final FADE_OUT_TIME:Float = 1.5; final FADE_OUT_TIME:Float = 1.5;