ContactPoint.thisCollider
var thisCollider: Collider;
Description

The first collider in contact.

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