Version: 2017.2
public bool CompareTag (string tag);

Parámetros

tag El tag a comparar.

Descripción

¿Este game object está etiquetado con tag?

using UnityEngine;
using System.Collections;

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