A representation of negative infinity (Read Only).
#pragma strict public class Example extends MonoBehaviour { function Start() { Debug.Log(Mathf.NegativeInfinity); } }
using UnityEngine;
public class Example : MonoBehaviour { void Start() { Debug.Log(Mathf.NegativeInfinity); } }