Version: 2018.1

ContactPoint2D

struct in UnityEngine

Switch to Manual

Description

Подробная информация о конкретной точке контакта, участвующей в 2D физическом столкновении.

A contact point describes a point of intersection between two Collider2D. ContactPoint2D can only exist on Collider2D that are not set to be triggers as triggers do not define contact points.

See Also: Collider2D.isTrigger, Physics2D.GetContacts, Rigidbody2D.GetContacts, Collider2D.GetContacts and Collision2D.

Variables

colliderThe incoming Collider2D involved in the collision with the otherCollider.
enabledIndicates whether the collision response or reaction is enabled or disabled.
normalНормаль к поверхности в точке контакта.
normalImpulseGets the impulse force applied at the contact point along the ContactPoint2D.normal.
otherColliderThe other Collider2D involved in the collision with the collider.
otherRigidbodyThe other Rigidbody2D involved in the collision with the rigidbody.
pointТочка контакта двух коллайдеров в мировых координатах.
relativeVelocityGets the relative velocity of the two colliders at the contact point (Read Only).
rigidbodyThe incoming Rigidbody2D involved in the collision with the otherRigidbody.
separationGets the distance between the colliders at the contact point.
tangentImpulseGets the impulse force applied at the contact point which is perpendicular to the ContactPoint2D.normal.