创建一个从 origin
起始,沿着 direction
方向的射线。
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); } }