Просмотр исходного кода

Add Format String to operator/precedence list

zacryol 3 лет назад
Родитель
Сommit
6d1819f2f1
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      tutorials/scripting/gdscript/gdscript_basics.rst

+ 3 - 1
tutorials/scripting/gdscript/gdscript_basics.rst

@@ -240,7 +240,9 @@ The following is the list of supported operators and their precedence.
 |                                                                        | as C++. Integer division is truncated   |
 |                                                                        | rather than returning a fractional      |
 |                                                                        | number, and the % operator is only      |
-|                                                                        | available for ints ("fmod" for floats)  |
+|                                                                        | available for ints ("fmod" for floats), |
+|                                                                        | and is additionally used for Format     |
+|                                                                        | Strings                                 |
 +------------------------------------------------------------------------+-----------------------------------------+
 | ``+``                                                                  | Addition / Concatenation of arrays      |
 +------------------------------------------------------------------------+-----------------------------------------+