1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-12-30 16:56:47 +00:00

lil lerp tweak

This commit is contained in:
Cameron Taylor 2021-12-06 15:28:14 -05:00
parent aee759d05b
commit 77f45962d8
2 changed files with 1 additions and 3 deletions

View file

@ -386,7 +386,7 @@ class FreeplayState extends MusicBeatSubstate
}
}
lerpScore = CoolUtil.coolLerp(lerpScore, intendedScore, 0.4);
lerpScore = CoolUtil.coolLerp(lerpScore, intendedScore, 0.2);
fp.scoreShit = Std.int(lerpScore);

View file

@ -71,8 +71,6 @@ class ScoreNum extends FlxSprite
{
animation.play(Std.string(val), true, false, 0);
updateHitbox();
y = (baseY - (height / 2)) + 45;
}
return val;