Answers for "unity loop through all objects with tag"

C#
1

unity loop through all objects with tag

var objects = GameObject.FindGameObjectsWithTag("blah");
foreach (var obj in objects) 
{
	// whatever
}
Posted by: Guest on November-10-2020

Code answers related to "unity loop through all objects with tag"

C# Answers by Framework

Browse Popular Code Answers by Language