GameObject.CompareTag 比较标签

function CompareTag (tag : string) : bool

Description描述

Is this game object tagged with tag?
这个游戏物体是否被标识tag标签?

using UnityEngine;
using System.Collections;

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

	}
}
// Immediate death trigger.
// Destroys any colliders that enter the trigger, if they are tagged player.
// 立即销毁trigger的游戏物体.
// 如果一切进入这个trigger的碰撞体被标识了,则销毁它.

function OnTriggerEnter (other : Collider) {
	if (other.gameObject.CompareTag ("Player")) {
		Destroy (other.gameObject);
	}
}
最后修改:2010年12月13日 Monday 18:11

本脚本参考基于Unity 3.4.1f5

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