소스 검색

Merge pull request #9316 from Chaosus/add_super_keyword

Add a `super` keyword to the table of keywords
Yuri Rubinsky 1 년 전
부모
커밋
4d925dd274
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      tutorials/scripting/gdscript/gdscript_basics.rst

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

@@ -187,6 +187,8 @@ in case you want to take a look under the hood.
 +------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
 | self       | Refers to current class instance.                                                                                                                 |
 +------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
+| super      | Resolves the scope of the parent method. See `Inheritance`_.                                                                                      |
++------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
 | signal     | Defines a signal.                                                                                                                                 |
 +------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
 | func       | Defines a function.                                                                                                                               |