public static Vector2 ClosestPoint (Vector2 position, Collider2D collider);

Parámetros

positionThe position from which to find the closest point on the specified collider.
colliderThe Collider on which to find the closest specified position.

Valor de retorno

Vector2 A point on the perimeter of the collider that is closest to the specified position.

Descripción

Returns a point on the perimeter of the collider that is closest to the specified position.

This function provides the ability to calculate the closest point of a specified position to the perimeter of any Collider2D type.

In the case where the position is inside the collider or the collider is disabled, then the input position is returned instead.


public static Vector2 ClosestPoint (Vector2 position, Rigidbody2D rigidbody);

Parámetros

positionThe position from which to find the closest point on the specified rigidbody.
rigidbodyThe Rigidbody on which to find the closest specified position.

Valor de retorno

Vector2 A point on the perimeter of a Collider attached to the rigidbody that is closest to the specified position.

Descripción

Returns a point on the perimeter of all enabled colliders attached to the rigidbody that is closest to the specified position.

This function provides the ability to calculate the closest point of a specified position to the perimeter of any enabled Collider2D type attached to the specified Rigidbody2D.

In the case where the position is inside any of the enabled Collider2D attached to the rigidbody, the input position is returned instead.