Version: 5.4
public bool CompareTag (string tag);

파라미터

tag The tag to compare.

설명

Is this game object tagged with tag ?

using UnityEngine;
using System.Collections;

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