Comment obtenir un enfant d'un jeu GameObject
// By Name
GameObject Child = GameObjectsTransform.Find("NameOfChild").gameObject
// By index
GameObject Child = GameObjectsTransform.GetChild(The child index).gameObject
Obnoxious Oystercatcher