unity max of two numbers code example
Example 1: c# unity max
using UnityEngine;public class ScriptExample : MonoBehaviour
{
void Start()
{
// prints 2.4
Debug.Log(Mathf.Max(1.2f, 2.4f));
}
}
Example 2: unity how to find the largest value out of 2 numbers
// prints 2
print(Mathf.Max(1f, 2f));