get first child unity code example
Example 1: how to access first child of parent unity
Transform firstChild = GameObject.Find("obj1").transform.GetChild(0);
Example 2: unity get child
GameObject Child;
Child = transform.GetChild(0).gameObject;
Transform firstChild = GameObject.Find("obj1").transform.GetChild(0);
GameObject Child;
Child = transform.GetChild(0).gameObject;