Versions with this page:
Versions without this page:
Returns the smallest of two or more values.
// prints 1.2 Debug.Log(Mathf.Min(1.2, 2.4));
// prints 1 Debug.Log(Mathf.Min(1, 2));