Answers for "unity iterate all child objects"

C#
0

unity iterate all child objects

foreach(Transform child in transform)
{
    Something(child.gameObject);
}
Posted by: Guest on March-25-2021

Code answers related to "unity iterate all child objects"

C# Answers by Framework

Browse Popular Code Answers by Language