[C#] Fix `Transform3D.InterpolateWith` applying rotation before scale

(cherry picked from commit e2ed63b313)
This commit is contained in:
kleonc 2024-03-24 09:22:38 +01:00 committed by Rémi Verschelde
parent 5318c0ae6b
commit 0177ddb144
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ namespace Godot
private void Rotate(Quaternion quaternion)
{
this *= new Basis(quaternion);
this = new Basis(quaternion) * this;
}
private void SetDiagonal(Vector3 diagonal)