summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgnacio Etcheverry <neikeq@users.noreply.github.com>2019-02-23 23:40:25 +0100
committerGitHub <noreply@github.com>2019-02-23 23:40:25 +0100
commitc2bc458dfed70aef9316802b142e0f4cbf567ffc (patch)
treefe8ed1fce5d434dab88c4c02866f4c9335b9e930
parentfd68bb2596bff1990711862f90b4763553d2edac (diff)
parentda3776a40a58814dba89ccc412a1589130837423 (diff)
Merge pull request #26210 from neikeq/issue-26209
C#: Fix Vector2.AngleToPoint
-rw-r--r--modules/mono/glue/Managed/Files/Vector2.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/glue/Managed/Files/Vector2.cs b/modules/mono/glue/Managed/Files/Vector2.cs
index ce41886bfc..73a3252fdb 100644
--- a/modules/mono/glue/Managed/Files/Vector2.cs
+++ b/modules/mono/glue/Managed/Files/Vector2.cs
@@ -84,7 +84,7 @@ namespace Godot
public real_t AngleToPoint(Vector2 to)
{
- return Mathf.Atan2(x - to.x, y - to.y);
+ return Mathf.Atan2(y - to.y, x - to.x);
}
public real_t Aspect()