Version: 2017.3
public bool CompareTag (string tag);

Parameters

tag @param tag Тег для сравнения.

Description

Помечен ли данный игровой объект тегом tag?

using UnityEngine;
using System.Collections;

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