Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add links from GDScript keywords table to relevant sections #10541

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions tutorials/scripting/gdscript/gdscript_basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -184,17 +184,17 @@ in case you want to take a look under the hood.
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
| super | Resolves the scope of the parent method. See `Inheritance`_. |
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
| signal | Defines a signal. |
| signal | Defines a signal. See `Signals`_. |
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
| func | Defines a function. |
| func | Defines a function. See `Functions`_. |
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
| static | Defines a static function or a static member variable. |
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
| const | Defines a constant. |
| const | Defines a constant. See `Constants`_. |
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
| enum | Defines an enum. |
| enum | Defines an enum. See `Enums`_. |
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
| var | Defines a variable. |
| var | Defines a variable. See `Variables`_. |
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
| breakpoint | Editor helper for debugger breakpoints. Unlike breakpoints created by clicking in the gutter, ``breakpoint`` is stored in the script itself. |
| | This makes it persistent across different machines when using version control. |
Expand Down
Loading