Mathf.NegativeInfinity Manual     Reference     Scripting  
Scripting > Runtime Classes > Mathf
Mathf.NegativeInfinity

static var NegativeInfinity : float

Description

A representation of negative infinity (Read Only).

JavaScript
Debug.Log(Mathf.NegativeInfinity);

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Example() {
Debug.Log(Mathf.NegativeInfinity);
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

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