mirror of
https://github.com/Relintai/mono.git
synced 2024-11-08 10:12:16 +01:00
Backported from godot: [C#] Fix Transform3D.InterpolateWith applying rotation before scale
- kleonc authored and akien-mga committed
1db5090dcd
This commit is contained in:
parent
a1f2ac9c98
commit
6b8f603ea8
@ -253,7 +253,7 @@ namespace Godot
|
||||
|
||||
private void Rotate(Quaternion quaternion)
|
||||
{
|
||||
this *= new Basis(quaternion);
|
||||
this = new Basis(quaternion) * this;
|
||||
}
|
||||
|
||||
private void SetDiagonal(Vector3 diagonal)
|
||||
|
Loading…
Reference in New Issue
Block a user