mirror of
https://github.com/bevyengine/bevy
synced 2025-02-19 23:48:37 +00:00
Forgot trailing comma
This commit is contained in:
parent
f1334405ba
commit
988f7c2d17
1 changed files with 1 additions and 1 deletions
|
@ -431,7 +431,7 @@ impl Transform {
|
||||||
Transform {
|
Transform {
|
||||||
translation: self.translation.lerp(rhs.translation, t),
|
translation: self.translation.lerp(rhs.translation, t),
|
||||||
rotation: self.rotation.lerp(rhs.rotation, t),
|
rotation: self.rotation.lerp(rhs.rotation, t),
|
||||||
scale: self.scale.lerp(rhs.scale, t)
|
scale: self.scale.lerp(rhs.scale, t),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue