diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2020-07-02 22:52:37 -0400 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2020-07-02 22:52:37 -0400 |
commit | 299c3ec1c19630514afb90034e5c3bfe7022db73 (patch) | |
tree | a1a075ed1cbab0e55f012673bdf3820393c9a85f | |
parent | 670d3a616cc961a6cb7886e65409744013c2fe1d (diff) |
Fix incorrect documentation for Vector2.angle()
-rw-r--r-- | doc/classes/Vector2.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Vector2.xml b/doc/classes/Vector2.xml index 7f4a212679..32895310d1 100644 --- a/doc/classes/Vector2.xml +++ b/doc/classes/Vector2.xml @@ -44,7 +44,7 @@ </return> <description> Returns the vector's angle in radians with respect to the X axis, or [code](1, 0)[/code] vector. - Equivalent to the result of [method @GDScript.atan2] when called with the vector's [member x] and [member y] as parameters: [code]atan2(x, y)[/code]. + Equivalent to the result of [method @GDScript.atan2] when called with the vector's [member y] and [member x] as parameters: [code]atan2(y, x)[/code]. </description> </method> <method name="angle_to"> |