負の無限大を表現します (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)