mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-04-03 18:45:27 +00:00
fixed freeplay score offset shit
This commit is contained in:
parent
e4b9be1f2a
commit
aae3bf37e1
|
@ -119,6 +119,10 @@ class FreeplayState extends MusicBeatState
|
|||
super.update(elapsed);
|
||||
|
||||
lerpScore = Math.floor(FlxMath.lerp(lerpScore, intendedScore, 0.4));
|
||||
|
||||
if (Math.abs(lerpScore - intendedScore) <= 10)
|
||||
lerpScore = intendedScore;
|
||||
|
||||
scoreText.text = "PERSONAL BEST:" + lerpScore;
|
||||
|
||||
var upP = controls.UP_P;
|
||||
|
|
Loading…
Reference in a new issue