mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 08:07:54 -05:00
Fix an issue where the Freeplay menu never displays 100% clear.
This commit is contained in:
parent
a6948c3a38
commit
2e74678caf
1 changed files with 2 additions and 2 deletions
|
@ -733,8 +733,8 @@ class FreeplayState extends MusicBeatSubState
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
lerpScore = MathUtil.coolLerp(lerpScore, intendedScore, 0.2);
|
lerpScore = MathUtil.smoothLerp(lerpScore, intendedScore, elapsed, 0.5);
|
||||||
lerpCompletion = MathUtil.coolLerp(lerpCompletion, intendedCompletion, 0.9);
|
lerpCompletion = MathUtil.smoothLerp(lerpCompletion, intendedCompletion, elapsed, 0.5);
|
||||||
|
|
||||||
if (Math.isNaN(lerpScore))
|
if (Math.isNaN(lerpScore))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue