mirror of
https://github.com/bevyengine/bevy
synced 2024-11-27 07:00:18 +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 {
|
||||
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),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue