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