Physics2D.GetRayIntersectionAll

Switch to Manual
public static RaycastHit2D[] GetRayIntersectionAll (Ray ray, float distance= Mathf.Infinity, int layerMask= DefaultRaycastLayers);

Parameters

rayThe 3D ray defining origin and direction to test.
distanceThe maximum distance over which to cast the ray.
layerMask@param layerMask Фильтр для обнаружения коллайдеров только на определённых слоях.

Returns

RaycastHit2D[] The cast results returned.

Description

Cast a 3D ray against the colliders in the Scene returning all the colliders 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 array. You can use GetRayIntersectionNonAlloc to avoid this overhead if you need to make such calls frequently.

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