このページを含むバージョン:
このページを含まないバージョン:
レイの位置から設定した距離だけ進んだ点の座標を返します
using UnityEngine;public class Example : MonoBehaviour { void Start() { Ray r = new Ray(); print(r.GetPoint(10)); // a point 10 units along the ray } }