unity if gameobject has tag code example
Example 1: unity check tag
gameObject.tag
Example 2: get if object has tag unity
if (NameOfGameObject.tag == "A-Tag") {
// some code
}
gameObject.tag
if (NameOfGameObject.tag == "A-Tag") {
// some code
}