Improve documentation of rand_range

This commit is contained in:
Haoyu Qiu 2022-05-05 09:45:58 +08:00
parent 07b844e5b9
commit 84cc0c9c47

View file

@ -803,10 +803,11 @@
<argument index="0" name="from" type="float" />
<argument index="1" name="to" type="float" />
<description>
Random range, any floating point value between [code]from[/code] and [code]to[/code].
Returns a random floating point value between [code]from[/code] and [code]to[/code] (both endpoints inclusive).
[codeblock]
prints(rand_range(0, 1), rand_range(0, 1)) # Prints e.g. 0.135591 0.405263
[/codeblock]
[b]Note:[/b] This is equivalent to [code]randf() * (to - from) + from[/code].
</description>
</method>
<method name="rand_seed">