public bool CompareTag (string tag);

Parameters

tag 要比较的标签。

Description

此游戏对象是否使用 tag 进行了标记?

using UnityEngine;
using System.Collections;

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