版本: Unity 6 (6000.0)
语言英语
  • C#

Mathf.Infinity

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实会阅读用户提出的每一项更改建议,并在适用情况下进行更新。

关闭

提交失败

由于某种原因,您的更改建议无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

切换到手册
public static float Infinity;

描述

正无穷大的表示(只读)。

using UnityEngine;

public class Example : MonoBehaviour { // 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

void 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!"); } } }