summaryrefslogtreecommitdiff
path: root/modules/mono/glue/cs_files
diff options
context:
space:
mode:
authorNathan Warden <nathan@nathanwarden.com>2018-02-02 16:45:30 -0500
committerNathan Warden <nathan@nathanwarden.com>2018-02-02 16:45:30 -0500
commit0cc4de1f24bf1fee89cb64cd11ae245be0ea3d98 (patch)
tree8fbca65f0cda131160f60f9bf72d1f83e4993046 /modules/mono/glue/cs_files
parentabf82057f346733c4036846aa5a0376edd0ac350 (diff)
[Mono] Basis values now marshalled in the correct order.
Diffstat (limited to 'modules/mono/glue/cs_files')
-rw-r--r--modules/mono/glue/cs_files/Basis.cs6
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)