Answers for "how to find gameobbject with tag in unity"

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
8

find gameobject with tag

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

Code answers related to "how to find gameobbject with tag in unity"

Browse Popular Code Answers by Language