Legacy Documentation: Version 5.3
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Mathf.Max

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static function Max(a: float, b: float): float;
public static float Max(float a, float b);
public static function Max(params values: float[]): float;
public static float Max(params float[] values);

Parameters

Description

Returns largest of two or more values.

// prints 2.4
print(Mathf.Max(1.2, 2.4));
// prints 2.4
Debug.Log(Mathf.Max(1.2, 2.4));

public static function Max(a: int, b: int): int;
public static int Max(int a, int b);
public static function Max(params values: int[]): int;
public static int Max(params int[] values);

Parameters

Description

Returns the largest of two or more values.

// prints 2
print(Mathf.Max(1, 2));
// prints 2
Debug.Log(Mathf.Max(1, 2));