This commit is contained in:
Andre Henriques 2023-03-15 23:21:40 +00:00
parent 5418a139f2
commit 92fb1478b7

View File

@ -333,7 +333,7 @@ impl Lerp for f64 {
fn lerp(self, other: &Self, diff: f64) -> Self {
let delta = diff / 1000.0;
let change = (*other - self) * 0.4 * delta;
let change = (*other - self) * 0.8 * delta;
let lerped = self + change;