mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-04-03 18:59:42 -04:00
Fix variable name in MathUtils.smoothLerp
This commit is contained in:
parent
516c5e8596
commit
ef96bd4358
1 changed files with 1 additions and 1 deletions
|
@ -70,6 +70,6 @@ class MathUtil
|
|||
// var halfLife:Float = -duration / logBase(2, precision);
|
||||
// lerp(current, target, 1 - exp2(-elapsed / halfLife));
|
||||
|
||||
return lerp(current, target, 1 - Math.pow(p, elapsed / duration));
|
||||
return lerp(current, target, 1 - Math.pow(precision, elapsed / duration));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue