Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Ray2D Constructor

public Ray2D(Vector2 origin, Vector2 direction);

Parameters

Vector2origin
Vector2direction

Description

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); } }

Did you find this page useful? Please give it a rating: