diff options
author | Ignacio Etcheverry <neikeq@users.noreply.github.com> | 2018-02-18 19:54:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-18 19:54:53 +0100 |
commit | 6e200b1fe0b03bc0acc6d7ab097750d87aa7ac67 (patch) | |
tree | 3b92c8c99a4384eadccbb42db107a2e476e26c8d /modules/mono/glue/cs_files/Basis.cs | |
parent | dad47d8876de45132226985dbbd079e060f6facc (diff) | |
parent | 0cc4de1f24bf1fee89cb64cd11ae245be0ea3d98 (diff) |
Merge pull request #16326 from NathanWarden/fix_basis_mono
[Mono] Basis values now marshalled in the correct order.
Diffstat (limited to 'modules/mono/glue/cs_files/Basis.cs')
-rw-r--r-- | modules/mono/glue/cs_files/Basis.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/mono/glue/cs_files/Basis.cs b/modules/mono/glue/cs_files/Basis.cs index ea92b1641b..c6cdc069ef 100644 --- a/modules/mono/glue/cs_files/Basis.cs +++ b/modules/mono/glue/cs_files/Basis.cs @@ -452,9 +452,9 @@ namespace Godot public Basis(float xx, float xy, float xz, float yx, float yy, float yz, float zx, float zy, float zz) { - this.x = new Vector3(xx, xy, xz); - this.y = new Vector3(yx, yy, yz); - this.z = new Vector3(zx, zy, zz); + this.x = new Vector3(xx, yx, zx); + this.y = new Vector3(xy, yy, zy); + this.z = new Vector3(xz, yz, zz); } public static Basis operator *(Basis left, Basis right) |