Forgot trailing comma

This commit is contained in:
Sigma-dev 2024-11-09 12:35:44 +01:00
parent f1334405ba
commit 988f7c2d17

View file

@ -431,7 +431,7 @@ impl Transform {
Transform {
translation: self.translation.lerp(rhs.translation, t),
rotation: self.rotation.lerp(rhs.rotation, t),
scale: self.scale.lerp(rhs.scale, t)
scale: self.scale.lerp(rhs.scale, t),
}
}