From 8652c1d5b129faa76210dfa757b3e91e48e5428d Mon Sep 17 00:00:00 2001
From: Rémi Verschelde
Date: Sat, 21 Oct 2017 12:02:08 +0200
Subject: classref: Sync with current source
---
doc/classes/VisualScriptBuiltinFunc.xml | 66 +++++++++++++++++----------------
1 file changed, 35 insertions(+), 31 deletions(-)
(limited to 'doc/classes/VisualScriptBuiltinFunc.xml')
diff --git a/doc/classes/VisualScriptBuiltinFunc.xml b/doc/classes/VisualScriptBuiltinFunc.xml
index f48f5a530..5891b24bf 100644
--- a/doc/classes/VisualScriptBuiltinFunc.xml
+++ b/doc/classes/VisualScriptBuiltinFunc.xml
@@ -114,97 +114,101 @@
Return a number linearly interpolated between the first two inputs, based on the third input. Uses the formula [code]a + (a - b) * t[/code].
-
+
+
+
+
+
Return the result of 'value' decreased by 'step' * 'amount'.
-
+
Randomize the seed (or the internal state) of the random number generator. Current implementation reseeds using a number based on time.
-
+
Return a random 32 bits integer value. To obtain a random value between 0 to N (where N is smaller than 2^32 - 1), you can use it with the remainder function.
-
+
Return a random floating-point value between 0 and 1. To obtain a random value between 0 to N, you can use it with multiplication.
-
+
Return a random floating-point value between the two inputs.
-
+
Set the seed for the random number generator.
-
+
Return a random value from the given seed, along with the new seed.
-
+
Convert the input from degrees to radians.
-
+
Convert the input from radians to degrees.
-
+
Convert the input from linear volume to decibel volume.
-
+
Convert the input from decibel volume to linear volume.
-
+
Return the greater of the two numbers, also known as their maximum.
-
+
Return the lesser of the two numbers, also known as their minimum.
-
+
Return the input clamped inside the given range, ensuring the result is never outside it. Equivalent to `min(max(input, range_low), range_high)`
-
+
Return the nearest power of 2 to the input.
-
+
Create a [WeakRef] from the input.
-
+
Create a [FuncRef] from the input.
-
+
Convert between types.
-
+
Return the type of the input as an integer. Check [enum Variant.Type] for the integers that might be returned.
-
+
Checks if a type is registered in the [ClassDB].
-
+
Return a character with the given ascii value.
-
+
Convert the input to a string.
-
+
Print the given string to the output window.
-
+
Print the given string to the standard error output.
-
+
Print the given string to the standard output, without adding a newline.
-
+
Serialize a [Variant] to a string.
-
+
Deserialize a [Variant] from a string serialized using [VAR_TO_STR].
-
+
Serialize a [Variant] to a [PoolByteArray].
-
+
Deserialize a [Variant] from a [PoolByteArray] serialized using [VAR_TO_BYTES].
-
+
Return the [Color] with the given name and alpha ranging from 0 to 1. Note: names are defined in color_names.inc.
-
+
The maximum value the [member function] property can have.
--
cgit v1.2.3-70-g09d2