A representation of negative infinity (Read Only).
Debug.Log(Mathf.NegativeInfinity);
using UnityEngine;using System.Collections;public class example : MonoBehaviour { void Example() { Debug.Log(Mathf.NegativeInfinity); }}
import UnityEngineimport System.Collectionsclass example(MonoBehaviour): def Example(): Debug.Log(Mathf.NegativeInfinity)