summaryrefslogtreecommitdiff
path: root/modules/mono
diff options
context:
space:
mode:
authorIgnacio Etcheverry <ignalfonsore@gmail.com>2019-07-27 02:15:29 +0200
committerIgnacio Etcheverry <ignalfonsore@gmail.com>2019-07-27 02:15:29 +0200
commitd54df7b9046363dd6d353f4ca172e9a3ddc39233 (patch)
tree53853ba01b3670c2368ea13cebe1a3a59350893c /modules/mono
parente4ec59b6ae7ba4da8a57d35a4763192fd84fa358 (diff)
C#: Fix Transform2D.AffineInverse()
Diffstat (limited to 'modules/mono')
-rw-r--r--modules/mono/glue/Managed/Files/Transform2D.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/mono/glue/Managed/Files/Transform2D.cs b/modules/mono/glue/Managed/Files/Transform2D.cs
index 33ff286769..12a3811230 100644
--- a/modules/mono/glue/Managed/Files/Transform2D.cs
+++ b/modules/mono/glue/Managed/Files/Transform2D.cs
@@ -98,6 +98,8 @@ namespace Godot
return x[columnIndex];
case 1:
return y[columnIndex];
+ case 2:
+ return origin[columnIndex];
default:
throw new IndexOutOfRangeException();
}
@@ -112,6 +114,9 @@ namespace Godot
case 1:
y[columnIndex] = value;
return;
+ case 2:
+ origin[columnIndex] = value;
+ return;
default:
throw new IndexOutOfRangeException();
}
@@ -136,7 +141,7 @@ namespace Godot
inv[0] *= new Vector2(detInv, -detInv);
inv[1] *= new Vector2(-detInv, detInv);
- inv[2] = BasisXform(-inv[2]);
+ inv[2] = inv.BasisXform(-inv[2]);
return inv;
}