Versions with this page:
Versions without this page:
Creates a 2D ray starting at origin along direction.
using UnityEngine;public class ExampleClass : MonoBehaviour { void Start() { // Create a ray from the transform position along the transform's z-axis Ray2D ray = new Ray2D(transform.position, transform.forward); } }