Version: 2018.2

Physics.OverlapCapsuleNonAlloc

Switch to Manual
public static int OverlapCapsuleNonAlloc (Vector3 point0, Vector3 point1, float radius, out Collider[] results, int layerMask= AllLayers, QueryTriggerInteraction queryTriggerInteraction= QueryTriggerInteraction.UseGlobal);

Parameters

point0The center of the sphere at the start of the capsule.
point1The center of the sphere at the end of the capsule.
radiusThe radius of the capsule.
resultsThe buffer to store the results into.
layerMaskA Layer mask that is used to selectively ignore colliders when casting a capsule.
queryTriggerInteractionSpecifies whether this query should hit Triggers.

Returns

int The amount of entries written to the buffer.

Description

Check the given capsule against the physics world and return all overlapping colliders in the user-provided buffer.

Same as Physics.OverlapCapsule but does not allocate anything on the managed heap.