[C#] Fix Transform3D.InterpolateWith
applying rotation before scale
(cherry picked from commit e2ed63b313
)
This commit is contained in:
parent
b045a7c92e
commit
1db5090dcd
1 changed files with 1 additions and 1 deletions
|
@ -253,7 +253,7 @@ namespace Godot
|
|||
|
||||
private void Rotate(Quat quaternion)
|
||||
{
|
||||
this *= new Basis(quaternion);
|
||||
this = new Basis(quaternion) * this;
|
||||
}
|
||||
|
||||
private void SetDiagonal(Vector3 diagonal)
|
||||
|
|
Loading…
Reference in a new issue