包含此页的版本:
不含此页的版本:
沿着 direction 创建从 origin 开始的射线。
direction
origin
using UnityEngine;public class ExampleClass : MonoBehaviour { void Start() { // Create a ray from the transform position along the transform's z-axis Ray ray = new Ray(transform.position, transform.forward); } }