From 1ef73d6bfce9140e3ae72cfc685d499d87cc0b34 Mon Sep 17 00:00:00 2001 From: Mohammad Hadi Aliakbar Date: Fri, 26 Feb 2016 19:57:41 +0330 Subject: [PATCH] Update gdscript.rst --- reference/gdscript.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/reference/gdscript.rst b/reference/gdscript.rst index 50be033a..7e80884b 100644 --- a/reference/gdscript.rst +++ b/reference/gdscript.rst @@ -744,7 +744,10 @@ variables: export(Color, RGB) var col # Color is RGB export(Color, RGBA) var col # Color is RGBA - + + # another node in the scene can be exported too + + export(NodePath) var node It must be noted that even if the script is not being run while at the editor, the exported properties are still editable (see below for "tool").