Versions with this page:
Versions without this page:
返回射线上 distance 个单位处的点。
distance
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public Ray r; void Example() { print(r.GetPoint(10)); } }