RandomFloat: Difference between revisions
From Onset Developer Wiki
Created page with "{{FuncSyntax|RandomFloat( [, Min, Max]) }}" |
No edit summary |
||
(9 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{FuncSyntax|RandomFloat( [, Min, Max]) | {{Info|Function|Server & Client|1.0}} | ||
}} | |||
{{FuncDescription|Get a pseudo-random float. Negative ranges are supported as of v1.0.2.}} | |||
{{FuncSyntax|RandomFloat([, Min, Max])}} | |||
{{FuncParameters}} | |||
{{FuncParamOptional|Min|The minimum float.}} | |||
{{FuncParamOptional|Max|The maximum float.}} | |||
{{FuncReturnValue|Returns the random float between the range.}} | |||
== Example == | |||
<syntaxhighlight lang="Lua"> | |||
RandomFloat(0, 10) -- Returns a number between 0 to 10 | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | |||
* [[Random]] |
Latest revision as of 10:48, 6 January 2020
Description
Get a pseudo-random float. Negative ranges are supported as of v1.0.2.
Syntax
RandomFloat([, Min, Max])
Parameters
- Min (optional)
The minimum float. - Max (optional)
The maximum float.
Return Value
- Returns the random float between the range.
Example
RandomFloat(0, 10) -- Returns a number between 0 to 10