diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-09-17 19:35:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-17 19:35:55 +0200 |
commit | 7762e8b1c1fbabc69769e8df9d6aa2443d309892 (patch) | |
tree | 7aed1f940dda8b1351d0384b81b6d81746b5f2e2 /doc/classes/float.xml | |
parent | 98a7bf340698d89708aae7c26f0e1416bd6cdc58 (diff) | |
parent | 455e142d37c993a0c80ff5241a10ae9327e46d43 (diff) |
Merge pull request #52788 from vnen/gdscript-compare-with-null
Diffstat (limited to 'doc/classes/float.xml')
-rw-r--r-- | doc/classes/float.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/classes/float.xml b/doc/classes/float.xml index 4bf04fe25f..be8e1638e4 100644 --- a/doc/classes/float.xml +++ b/doc/classes/float.xml @@ -42,6 +42,11 @@ </method> <method name="operator !=" qualifiers="operator"> <return type="bool" /> + <description> + </description> + </method> + <method name="operator !=" qualifiers="operator"> + <return type="bool" /> <argument index="0" name="right" type="float" /> <description> Returns [code]true[/code] if two floats are different from each other. @@ -191,6 +196,11 @@ </method> <method name="operator ==" qualifiers="operator"> <return type="bool" /> + <description> + </description> + </method> + <method name="operator ==" qualifiers="operator"> + <return type="bool" /> <argument index="0" name="right" type="float" /> <description> Returns [code]true[/code] if both floats are exactly equal. |