ContactPoint.otherCollider 其他碰撞器

var otherCollider : Collider

Description描述

The other collider in contact.

接触的其他碰撞器。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnCollisionEnter(Collision other) {
		print("This collider collided with: " + other.contacts[0].otherCollider.name);
	}
}
// Prints the name of the collider this transform collided with
//打印该变换碰到的碰撞器的名字
function OnCollisionEnter(other : Collision) {
	print("This collider collided with: " + other.contacts[0].otherCollider.name);
}
最后修改:2011年1月7日 Friday 22:00

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。