Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Mathf.Infinity

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static var Infinity: float;
public static float Infinity;

Descripción

A representation of positive infinity (Read Only).

	// Casts a ray from (0,0,0) towards (0,0,1) to the infinity and prints a message
	// if any object has touched the ray.
	// To test it, just place any object and intersect it with the white drawn line
 
	function Update () {
		// shows the line that follows the ray.
		Debug.DrawLine(Vector3.zero, Vector3.forward * 100);
		if (Physics.Raycast (Vector3.zero, Vector3.forward, Mathf.Infinity)) {
			print ("There is something in front of the object!");
		}
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Update() { Debug.DrawLine(Vector3.zero, Vector3.forward * 100); if (Physics.Raycast(Vector3.zero, Vector3.forward, Mathf.Infinity)) print("There is something in front of the object!"); } }