Parcourir la source

Merge pull request #2967 from Scony/func-call-operator

function call operator added to operator table
Nathan Lovato il y a 5 ans
Parent
commit
b19ead1230
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  1. 2 0
      getting_started/scripting/gdscript/gdscript_basics.rst

+ 2 - 0
getting_started/scripting/gdscript/gdscript_basics.rst

@@ -250,6 +250,8 @@ The following is the list of supported operators and their precedence.
 +---------------------------------------------------------------+-----------------------------------------+
 | ``x.attribute``                                               | Attribute reference                     |
 +---------------------------------------------------------------+-----------------------------------------+
+| ``foo()``                                                     | Function call                           |
++---------------------------------------------------------------+-----------------------------------------+
 | ``is``                                                        | Instance type checker                   |
 +---------------------------------------------------------------+-----------------------------------------+
 | ``~``                                                         | Bitwise NOT                             |