Answers for "unity how to find gameobject with tag"

12

unity find objects with tag

//Find a single game object
GameObject.FindWithTag("TagName");

//Find multiple game objects from tag 
GameObject.FindGameObjectsWithTag("TagName");
Posted by: Guest on October-13-2020
19

find gameobject with tag

GameObject.FindWithTag("Enemy");
Posted by: Guest on January-25-2020
8

find gameobject with tag

GameObject.FindGameObjectsWithTag("Enemy");
Posted by: Guest on January-25-2020
1

how to find the tag of an objecdt in unity

if(FindGameObjectsWithTag(Player){
  Debug.Log("FoundPlayer")
  }
Posted by: Guest on September-21-2020

Code answers related to "unity how to find gameobject with tag"

Browse Popular Code Answers by Language