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