RandomFloat: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Info|Function|Server|1.0}}
{{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])}}
{{FuncSyntax|RandomFloat([, Min, Max])}}


{{FuncParameters}}
{{FuncParameters}}
{{FuncParamOptional|Min|__EDIT_ME__}}
{{FuncParamOptional|Min|The minimum float.}}
{{FuncParamOptional|Max]|__EDIT_ME__}}
{{FuncParamOptional|Max|The maximum float.}}


{{FuncReturnValue|__EDIT_ME__}}
{{FuncReturnValue|Returns the random float between the range.}}


== Example ==
== Example ==
__EDIT_ME__
<syntaxhighlight lang="Lua">
RandomFloat(0, 10) -- Returns a number between 0 to 10
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
__EDIT_ME__
* [[Random]]

Latest revision as of 10:48, 6 January 2020

RandomFloat

Type: Function
Context: Server & Client
Introduced: v1.0

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

See also