言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

ContactPoint.otherCollider

public var otherCollider: Collider;

Description

他のコライダー情報

	// Prints the name of the collider this transform collided with
	function OnCollisionEnter(other : Collision) { 
		print("This collider collided with: " + other.contacts[0].otherCollider.name);
	}