public ColliderDistance2D Distance (Collider2D collider);

Parámetros

colliderA collider used to calculate the minimum distance against all colliders attached to this Rigidbody2D.

Valor de retorno

ColliderDistance2D The minimum distance of collider against all colliders attached to this Rigidbody2D.

Descripción

Calculates the minimum distance of this collider against all Collider2D attached to this Rigidbody2D.

The provided collider will be check against all Collider2D attached to this Rigidbody2D and the minimum distance from all attached Collider2D will be returned.

The provided collider and at least one Collider2D attached to this Rigidbody2D must be valid for the returned ColliderDistance2D to be valid i.e. the Collider2D should not be disabled and must contain collision shapes and the provided collider must not be NULL. You can check if the returned value is valid by checking ColliderDistance2D.isValid.

See Also: Physics2D.Distance and Collider2D.Distance.