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