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