Version: 2018.2
public Vector3 GetPoint (float distance);

説明

レイの位置から設定した距離だけ進んだ点の座標を返します

using UnityEngine;

public class Example : MonoBehaviour { void Start() { Ray r = new Ray(); print(r.GetPoint(10)); // a point 10 units along the ray } }