mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
[C#] Fix Transform3D.InterpolateWith applying rotation before scale
(cherry picked from commit e2ed63b313)
This commit is contained in:
parent
cc4a47251c
commit
44f1ca7ea9
1 changed files with 1 additions and 1 deletions
|
|
@ -238,7 +238,7 @@ namespace Godot
|
||||||
|
|
||||||
private void Rotate(Quat quaternion)
|
private void Rotate(Quat quaternion)
|
||||||
{
|
{
|
||||||
this *= new Basis(quaternion);
|
this = new Basis(quaternion) * this;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SetDiagonal(Vector3 diagonal)
|
private void SetDiagonal(Vector3 diagonal)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue