From 677e95d8d189a62e6473b43989012a8258f193a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Wed, 15 Nov 2017 19:23:20 +0100 Subject: doc: Make all module docs self-contained --- .../doc_classes/VisualScriptConstructor.xml | 69 ++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 modules/visual_script/doc_classes/VisualScriptConstructor.xml (limited to 'modules/visual_script/doc_classes/VisualScriptConstructor.xml') diff --git a/modules/visual_script/doc_classes/VisualScriptConstructor.xml b/modules/visual_script/doc_classes/VisualScriptConstructor.xml new file mode 100644 index 0000000000..91df52e893 --- /dev/null +++ b/modules/visual_script/doc_classes/VisualScriptConstructor.xml @@ -0,0 +1,69 @@ + + + + A Visual Script node which calls a base type constructor. + + + A Visual Script node which calls a base type constructor. It can be used for type conversion as well. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The constructor function's method info. Has roughly the following structure: + [codeblock] + { + name = "string", + args = [{ + name = "string" + class_name = "string" + type = TYPE_* + hint = PROPERTY_HINT_* + hint_string = "string" + }] + default_args = [] # Array of variants + flags = METHOD_FLAG_* + id = 0 + return = {type = TYPE_*} + } + [/codeblock] + + + The type to be constructed. + + + + + -- cgit v1.2.3