Merge pull request #60773 from timothyqiu/rand-doc
This commit is contained in:
commit
c3065e2186
1 changed files with 2 additions and 1 deletions
|
@ -804,10 +804,11 @@
|
||||||
<argument index="0" name="from" type="float" />
|
<argument index="0" name="from" type="float" />
|
||||||
<argument index="1" name="to" type="float" />
|
<argument index="1" name="to" type="float" />
|
||||||
<description>
|
<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]
|
[codeblock]
|
||||||
prints(rand_range(0, 1), rand_range(0, 1)) # Prints e.g. 0.135591 0.405263
|
prints(rand_range(0, 1), rand_range(0, 1)) # Prints e.g. 0.135591 0.405263
|
||||||
[/codeblock]
|
[/codeblock]
|
||||||
|
[b]Note:[/b] This is equivalent to [code]randf() * (to - from) + from[/code].
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="rand_seed">
|
<method name="rand_seed">
|
||||||
|
|
Loading…
Reference in a new issue