Browse Source

Add link to tool docs in gdscript docs. (#3003)

Add link to tool docs in gdscript docs.
Hugo Locurcio 6 years ago
parent
commit
5579022cd7
1 changed files with 3 additions and 0 deletions
  1. 3 0
      getting_started/scripting/gdscript/gdscript_basics.rst

+ 3 - 0
getting_started/scripting/gdscript/gdscript_basics.rst

@@ -1256,6 +1256,9 @@ placed at the top of the file::
     func _ready():
     func _ready():
         print("Hello")
         print("Hello")
 
 
+
+See :ref:`doc_running_code_in_the_editor` for more information.
+
 .. warning:: Be cautious when freeing nodes with ``queue_free()`` or ``free()``
 .. warning:: Be cautious when freeing nodes with ``queue_free()`` or ``free()``
              in a tool script (especially the script's owner itself). As tool
              in a tool script (especially the script's owner itself). As tool
              scripts run their code in the editor, misusing them may lead to
              scripts run their code in the editor, misusing them may lead to