summaryrefslogtreecommitdiff
path: root/doc/classes/VisualScriptComment.xml
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-11-15 19:23:20 +0100
committerRémi Verschelde <rverschelde@gmail.com>2017-11-15 21:29:33 +0100
commit677e95d8d189a62e6473b43989012a8258f193a4 (patch)
treea68e77b5d7bd8a319131e632da91f6b86acf7768 /doc/classes/VisualScriptComment.xml
parente7701bb2de30c554f52dc9d3f0110b4001ae18ad (diff)
doc: Make all module docs self-contained
Diffstat (limited to 'doc/classes/VisualScriptComment.xml')
-rw-r--r--doc/classes/VisualScriptComment.xml71
1 files changed, 0 insertions, 71 deletions
diff --git a/doc/classes/VisualScriptComment.xml b/doc/classes/VisualScriptComment.xml
deleted file mode 100644
index ea4545f8ef..0000000000
--- a/doc/classes/VisualScriptComment.xml
+++ /dev/null
@@ -1,71 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<class name="VisualScriptComment" inherits="VisualScriptNode" category="Core" version="3.0-alpha">
- <brief_description>
- A Visual Script node used to annotate the script.
- </brief_description>
- <description>
- A Visual Script node used to display annotations in the script, so that code may be documented.
- Comment nodes can be resized so they encompass a group of nodes.
- </description>
- <tutorials>
- </tutorials>
- <demos>
- </demos>
- <methods>
- <method name="get_description" qualifiers="const">
- <return type="String">
- </return>
- <description>
- </description>
- </method>
- <method name="get_size" qualifiers="const">
- <return type="Vector2">
- </return>
- <description>
- </description>
- </method>
- <method name="get_title" qualifiers="const">
- <return type="String">
- </return>
- <description>
- </description>
- </method>
- <method name="set_description">
- <return type="void">
- </return>
- <argument index="0" name="description" type="String">
- </argument>
- <description>
- </description>
- </method>
- <method name="set_size">
- <return type="void">
- </return>
- <argument index="0" name="size" type="Vector2">
- </argument>
- <description>
- </description>
- </method>
- <method name="set_title">
- <return type="void">
- </return>
- <argument index="0" name="title" type="String">
- </argument>
- <description>
- </description>
- </method>
- </methods>
- <members>
- <member name="description" type="String" setter="set_description" getter="get_description">
- The text inside the comment node.
- </member>
- <member name="size" type="Vector2" setter="set_size" getter="get_size">
- The comment node's size (in pixels).
- </member>
- <member name="title" type="String" setter="set_title" getter="get_title">
- The comment node's title.
- </member>
- </members>
- <constants>
- </constants>
-</class>