Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

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);
	}