ContactPoint.thisCollider 第一个碰撞器

var thisCollider : Collider

Description描述

The first collider in contact.

第一个接触的碰撞器。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnCollisionEnter(Collision other) {
		print("This collider is named: " + other.contacts[0].thisCollider.name);
	}
}
// Prints the name of this collider
//打印第一个碰撞器的名字
function OnCollisionEnter(other : Collision) {
print("This collider is named: " + other.contacts[0].thisCollider.name);
}
最后修改:2011年1月7日 Friday 21:56

本脚本参考基于Unity 3.4.1f5

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