Mathf.NegativeInfinitystatic var NegativeInfinity : floatDescriptionA representation of negative infinity (Read Only).
JavaScripts
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { Debug.Log(Mathf.NegativeInfinity); } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): Debug.Log(Mathf.NegativeInfinity) |
