diff --git a/_extensions/gdscript.py b/_extensions/gdscript.py index ef90732b0..9ea18aeb8 100644 --- a/_extensions/gdscript.py +++ b/_extensions/gdscript.py @@ -331,7 +331,6 @@ class GDScriptLexer(RegexLexer): "Color", "RID", "Object", - "NodePath", "Dictionary", "Array", "PackedByteArray", diff --git a/tutorials/scripting/gdextension/gdextension_cpp_example.rst b/tutorials/scripting/gdextension/gdextension_cpp_example.rst index 6272d434e..d4e029cea 100644 --- a/tutorials/scripting/gdextension/gdextension_cpp_example.rst +++ b/tutorials/scripting/gdextension/gdextension_cpp_example.rst @@ -616,7 +616,7 @@ node. In the **Node** dock, we can find our new signal and link it up by pressin the **Connect** button or double-clicking the signal. We've added a script on our main node and implemented our signal like this: -.. code-block:: GDScript +.. code-block:: gdscript extends Node