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.
CloseFor 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.
Closeposition | The position from which to find the closest point on the specified collider . |
collider | The Collider on which to find the closest specified position . |
Vector2
A point on the perimeter of the collider
that is closest to the specified position
.
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.
position | The position from which to find the closest point on the specified rigidbody . |
rigidbody | The Rigidbody on which to find the closest specified position . |
Vector2
A point on the perimeter of a Collider attached to the rigidbody
that is closest to the specified position
.
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.