Component.CompareTag 比较标签

function CompareTag (tag : string) : bool

Description描述

Is this game object tagged tag?

游戏物体有被标记标签么?

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnTriggerEnter(Collider other) {
	if (other.CompareTag("Player"))
		Destroy(other.gameObject);

	}
}
// Immediate death trigger.
//立即死亡触发器
// Destroys any colliders that enter the trigger, if they are tagged player.
//如果它们标签是player,进入这个触发器将销毁任何碰撞。
function OnTriggerEnter (other : Collider) {
	if (other.CompareTag ("Player")) {
		Destroy (other.gameObject);
	}
}
最后修改:2010年12月11日 Saturday 15:51

本脚本参考基于Unity 3.4.1f5

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