You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-03 16:55:53 +00:00
[C#] Fix Transform3D.InterpolateWith applying rotation before scale
(cherry picked from commit e2ed63b313)
This commit is contained in:
@@ -238,7 +238,7 @@ namespace Godot
|
||||
|
||||
private void Rotate(Quat quaternion)
|
||||
{
|
||||
this *= new Basis(quaternion);
|
||||
this = new Basis(quaternion) * this;
|
||||
}
|
||||
|
||||
private void SetDiagonal(Vector3 diagonal)
|
||||
|
||||
Reference in New Issue
Block a user