|
Name | Description |
---|---|
point1 | The start of the capsule. |
point2 | The end of the capsule. |
radius | The radius of the capsule. |
direction | The direction into which to sweep the capsule. |
distance | The length of the sweep |
layerMask | A Layer mask that is used to selectively ignore colliders when casting a capsule. |
RaycastHit[] - an array of all colliders hit in the sweep.
Like Physics.CapsuleCast, but this function will return all hits the capsule sweep intersects.
Casts a capsule against all colliders in the scene and returns detailed information on each collider which was hit. The capsule is defined by the two spheres with radius around point1 and point2, which form the two ends of the capsule. Hits are returned all colliders which would collide against this capsule if the capsule was moved along direction. This is useful when a Raycast does not give enough precision, because you want to find out if an object of a specific size, such as a character, will be able to move somewhere without colliding with anything on the way.
See Also: Physics.SphereCast, Physics.CapsuleCast, Physics.Raycast, Rigidbody.SweepTest