Math.clamp

From GiderosMobile
Revision as of 15:30, 13 July 2023 by Hgy29 (talk | contribs) (Text replacement - "</source>" to "</syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Available since: Gideros 2022.1
Class: math

Description

Returns a number between min and max, inclusive.

(number) = math.clamp(v,min,max)

Parameters

v: (number) number to clamp
min: (number) min possible value
max: (number) max possible value

Return values

Returns (number) the clamped number