Select your preferred scripting language. All code snippets will be displayed in this language.
A representation of negative infinity (Read Only).
Debug.Log(Mathf.NegativeInfinity);
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Example() { Debug.Log(Mathf.NegativeInfinity); } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Example() as void: Debug.Log(Mathf.NegativeInfinity)