Version: 2022.3
LanguageEnglish
  • C#

Physics2D.GetRayIntersection

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public static RaycastHit2D GetRayIntersection(Ray ray, float distance = Mathf.Infinity, int layerMask = DefaultRaycastLayers);

Parameters

ray The 3D ray defining origin and direction to test.
distance The maximum distance over which to cast the ray.
layerMask Filter to detect Colliders only on certain layers.

Returns

RaycastHit2D The cast results returned.

Description

Cast a 3D ray against the Colliders in the Scene returning the first Collider along the ray.

This is useful for finding Colliders intersecting an arbitrary 3D ray.

Note that this function will allocate memory for the returned RaycastHit2D object. You can use GetRayIntersectionNonAlloc to avoid this overhead if you need to make such calls frequently.

Additionally that this function is a 3D intersection test therefore any collision normals returned in the RaycastHit2D will be zero.