태그 비교 방법 일단 3가지
if(other.transform.CompareTag("Block"));
if(other.transform.tag == "Block");
if(other.transform.tag.Contains("Block");
이렇게 3가지.
태그 비교 방법 일단 3가지
if(other.transform.CompareTag("Block"));
if(other.transform.tag == "Block");
if(other.transform.tag.Contains("Block");
이렇게 3가지.