find childgameobject code example
Example: find child of gameobject unity
gameObject.transform.Find("ChildGameObject").gameObject;
//This insures that you are finding the child instead of finding another
//GameObject's Child.
gameObject.transform.Find("ChildGameObject").gameObject;
//This insures that you are finding the child instead of finding another
//GameObject's Child.