Ray.GetPoint 获取点

function GetPoint (distance : float) : Vector3

Description描述

Returns a point at distance units along the ray.

返回沿着射线在distance距离单位的点。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public Ray r;
	public void Awake() {
		print(r.GetPoint(10));
	}
}
var r : Ray;
// a point 10 units along the ray
//沿着射线在10单位的一个点
print( r.GetPoint (10) ); 
最后修改:2010年12月23日 Thursday 22:44

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。