summaryrefslogtreecommitdiff
path: root/doc/classes/VisualScriptLocalVar.xml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/classes/VisualScriptLocalVar.xml')
-rw-r--r--doc/classes/VisualScriptLocalVar.xml57
1 files changed, 0 insertions, 57 deletions
diff --git a/doc/classes/VisualScriptLocalVar.xml b/doc/classes/VisualScriptLocalVar.xml
deleted file mode 100644
index ff77dfac0d..0000000000
--- a/doc/classes/VisualScriptLocalVar.xml
+++ /dev/null
@@ -1,57 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<class name="VisualScriptLocalVar" inherits="VisualScriptNode" category="Core" version="3.0-alpha">
- <brief_description>
- Gets a local variable's value.
- </brief_description>
- <description>
- Returns a local variable's value. "Var Name" must be supplied, with an optional type.
- [b]Input Ports:[/b]
- none
- [b]Output Ports:[/b]
- - Data (variant): [code]get[/code]
- </description>
- <tutorials>
- </tutorials>
- <demos>
- </demos>
- <methods>
- <method name="get_var_name" qualifiers="const">
- <return type="String">
- </return>
- <description>
- </description>
- </method>
- <method name="get_var_type" qualifiers="const">
- <return type="int" enum="Variant.Type">
- </return>
- <description>
- </description>
- </method>
- <method name="set_var_name">
- <return type="void">
- </return>
- <argument index="0" name="name" type="String">
- </argument>
- <description>
- </description>
- </method>
- <method name="set_var_type">
- <return type="void">
- </return>
- <argument index="0" name="type" type="int" enum="Variant.Type">
- </argument>
- <description>
- </description>
- </method>
- </methods>
- <members>
- <member name="type" type="int" setter="set_var_type" getter="get_var_type" enum="Variant.Type">
- The local variable's type.
- </member>
- <member name="var_name" type="String" setter="set_var_name" getter="get_var_name">
- The local variable's name.
- </member>
- </members>
- <constants>
- </constants>
-</class>