📜  unity get child gameobject - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:43.536000             🧑  作者: Mango

代码示例5
Transform[] transforms = this.GetComponentsInChildren();
 
 foreach(Transform t in transforms)
 {
     if (t.gameObject.name == "Child")
     {
         Debug.Log ("Found " + t);
     }
 }