Explorar el Código

Merge pull request #6752 from hsandt/gdscript_exports-fix

Fix gdscript_exports @export_node_path example by adding quotes
Matthew hace 2 años
padre
commit
17c0c48dda
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      tutorials/scripting/gdscript/gdscript_exports.rst

+ 1 - 1
tutorials/scripting/gdscript/gdscript_exports.rst

@@ -224,7 +224,7 @@ annotation:
 
 ::
 
-    @export_node_path(Button, TouchScreenButton) var some_button
+    @export_node_path("Button", "TouchScreenButton") var some_button
 
 Resources
 ---------