mirror of
https://github.com/godotengine/godot.git
synced 2025-04-07 00:44:24 +08:00
[C#] Fix Transform3D.InterpolateWith
applying rotation before scale
(cherry picked from commit e2ed63b313e3eff714e32f2cd2d01db9f0e2ea9d)
This commit is contained in:
parent
498edf3dd8
commit
a8851277d2
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user