From 3e053341896f773674edff95d110581758d33d6f Mon Sep 17 00:00:00 2001 From: Yuri Rubinsky Date: Thu, 2 May 2024 18:16:51 +0300 Subject: [PATCH] Add a `super` keyword to the table of keywords --- tutorials/scripting/gdscript/gdscript_basics.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tutorials/scripting/gdscript/gdscript_basics.rst b/tutorials/scripting/gdscript/gdscript_basics.rst index 085c2cc4f79..b5b9bb7a767 100644 --- a/tutorials/scripting/gdscript/gdscript_basics.rst +++ b/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. |