summaryrefslogtreecommitdiff
path: root/modules/visual_script/doc_classes
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-11-24 09:16:27 +0100
committerRémi Verschelde <rverschelde@gmail.com>2017-11-24 09:16:27 +0100
commit15ada56d73817c5c0be97882a88cb27696fcd3a8 (patch)
tree941e0461c4336da1826869caf0d6f363225a267d /modules/visual_script/doc_classes
parent679b64fe48a33781800fe70ea1ba2d25e201826c (diff)
doc: Sync classref with current source
Diffstat (limited to 'modules/visual_script/doc_classes')
-rw-r--r--modules/visual_script/doc_classes/VisualScriptBuiltinFunc.xml34
-rw-r--r--modules/visual_script/doc_classes/VisualScriptEditor.xml2
2 files changed, 18 insertions, 18 deletions
diff --git a/modules/visual_script/doc_classes/VisualScriptBuiltinFunc.xml b/modules/visual_script/doc_classes/VisualScriptBuiltinFunc.xml
index c45c8d2b64..a62fc317c2 100644
--- a/modules/visual_script/doc_classes/VisualScriptBuiltinFunc.xml
+++ b/modules/visual_script/doc_classes/VisualScriptBuiltinFunc.xml
@@ -170,55 +170,55 @@
<constant name="LOGIC_CLAMP" value="46">
Return the input clamped inside the given range, ensuring the result is never outside it. Equivalent to `min(max(input, range_low), range_high)`
</constant>
- <constant name="LOGIC_NEAREST_PO2" value="46">
+ <constant name="LOGIC_NEAREST_PO2" value="47">
Return the nearest power of 2 to the input.
</constant>
- <constant name="OBJ_WEAKREF" value="47">
+ <constant name="OBJ_WEAKREF" value="48">
Create a [WeakRef] from the input.
</constant>
- <constant name="FUNC_FUNCREF" value="48">
+ <constant name="FUNC_FUNCREF" value="49">
Create a [FuncRef] from the input.
</constant>
- <constant name="TYPE_CONVERT" value="49">
+ <constant name="TYPE_CONVERT" value="50">
Convert between types.
</constant>
- <constant name="TYPE_OF" value="50">
+ <constant name="TYPE_OF" value="51">
Return the type of the input as an integer. Check [enum Variant.Type] for the integers that might be returned.
</constant>
- <constant name="TYPE_EXISTS" value="51">
+ <constant name="TYPE_EXISTS" value="52">
Checks if a type is registered in the [ClassDB].
</constant>
- <constant name="TEXT_CHAR" value="52">
+ <constant name="TEXT_CHAR" value="53">
Return a character with the given ascii value.
</constant>
- <constant name="TEXT_STR" value="53">
+ <constant name="TEXT_STR" value="54">
Convert the input to a string.
</constant>
- <constant name="TEXT_PRINT" value="54">
+ <constant name="TEXT_PRINT" value="55">
Print the given string to the output window.
</constant>
- <constant name="TEXT_PRINTERR" value="55">
+ <constant name="TEXT_PRINTERR" value="56">
Print the given string to the standard error output.
</constant>
- <constant name="TEXT_PRINTRAW" value="56">
+ <constant name="TEXT_PRINTRAW" value="57">
Print the given string to the standard output, without adding a newline.
</constant>
- <constant name="VAR_TO_STR" value="57">
+ <constant name="VAR_TO_STR" value="58">
Serialize a [Variant] to a string.
</constant>
- <constant name="STR_TO_VAR" value="58">
+ <constant name="STR_TO_VAR" value="59">
Deserialize a [Variant] from a string serialized using [VAR_TO_STR].
</constant>
- <constant name="VAR_TO_BYTES" value="59">
+ <constant name="VAR_TO_BYTES" value="60">
Serialize a [Variant] to a [PoolByteArray].
</constant>
- <constant name="BYTES_TO_VAR" value="60">
+ <constant name="BYTES_TO_VAR" value="61">
Deserialize a [Variant] from a [PoolByteArray] serialized using [VAR_TO_BYTES].
</constant>
- <constant name="COLORN" value="61">
+ <constant name="COLORN" value="62">
Return the [Color] with the given name and alpha ranging from 0 to 1. Note: names are defined in color_names.inc.
</constant>
- <constant name="FUNC_MAX" value="62">
+ <constant name="FUNC_MAX" value="63">
The maximum value the [member function] property can have.
</constant>
</constants>
diff --git a/modules/visual_script/doc_classes/VisualScriptEditor.xml b/modules/visual_script/doc_classes/VisualScriptEditor.xml
index 70d52b2bd7..a22e2533a7 100644
--- a/modules/visual_script/doc_classes/VisualScriptEditor.xml
+++ b/modules/visual_script/doc_classes/VisualScriptEditor.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
-<class name="VisualScriptEditor" inherits="Object" category="Core" version="3.0.alpha.custom_build">
+<class name="VisualScriptEditor" inherits="Object" category="Core" version="3.0-alpha">
<brief_description>
</brief_description>
<description>