You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-02 19:01:36 +00:00
[C#] Fix Transform3D.InterpolateWith applying rotation before scale
This commit is contained in:
@@ -212,7 +212,7 @@ namespace Godot
|
||||
|
||||
private void Rotate(Quaternion quaternion)
|
||||
{
|
||||
this *= new Basis(quaternion);
|
||||
this = new Basis(quaternion) * this;
|
||||
}
|
||||
|
||||
private void SetDiagonal(Vector3 diagonal)
|
||||
|
||||
Reference in New Issue
Block a user