Mathf.NegativeInfinity
static var NegativeInfinity: float;
static float NegativeInfinity;
static NegativeInfinity as float
Description

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 UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	def Example() as void:
		Debug.Log(Mathf.NegativeInfinity)