Skip to content

Commit eff8cfd

Browse files
committed
removed unneeded change
1 parent 2cbb83e commit eff8cfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ fn ease_translation_lerp(
604604

605605
query.iter_mut().for_each(|(mut transform, interpolation)| {
606606
if let (Some(start), Some(end)) = (interpolation.start, interpolation.end) {
607-
transform.translation = start.lerp(end, overstep.min(1.0));
607+
transform.translation = start.lerp(end, overstep);
608608
}
609609
});
610610
}

0 commit comments

Comments
 (0)