ContactPoint.thisCollider

var thisCollider : Collider

Description

The first collider in contact.

JavaScript
    // Prints the name of this collider
function OnCollisionEnter(other : Collision) {
print("This collider is named: " + other.contacts[0].thisCollider.name);
}