Answers for "c# unity max"

C#
1

c# unity max

using UnityEngine;public class ScriptExample : MonoBehaviour
{
    void Start()
    {
        // prints 2.4
        Debug.Log(Mathf.Max(1.2f, 2.4f));
    }
}
Posted by: Guest on July-04-2020

C# Answers by Framework

Browse Popular Code Answers by Language