Version: 2019.2
LanguageEnglish
  • C#

Collider2D.ClosestPoint

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public Vector2 ClosestPoint(Vector2 position);

Parameters

positionThe position from which to find the closest point on this Collider.

Returns

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

Description

Returns a point on the perimeter of this 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 this Collider or this Collider is disabled, then the input position is returned instead.

See Also: Rigidbody2D.ClosestPoint & Physics2D.ClosestPoint.