unity find gameobject with name in child code example
Example 1: unity how to get a child from a gameobject
//For unity engine
GameObject.transform.GetChild(The child index).transform;
Example 2: get gameobject child by name
Gameobject.Find("ChildName") ;