📅  最后修改于: 2022-03-11 14:44:52.663000             🧑  作者: Mango
Transform[] transforms = this.GetComponentsInChildren();
foreach(Transform t in transforms)
{
if (t.gameObject.name == "Child")
{
Debug.Log ("Found " + t);
}
}