소스 검색

Merge pull request #5314 from zacryol/format-string-precedence

Add Format String to operator/precedence list
Max Hilbrunner 4 년 전
부모
커밋
514feca2b9
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      |
 +------------------------------------------------------------------------+-----------------------------------------+