using System.Collections; using System.Collections.Generic; using UnityEngine; public class TransformHelper : MonoBehaviour { //在层级未知的时候查找子物体 // public static Transform GetChild(Transform parentTF,string childName) { Transform childTF= parentTF.Find(childName); if(childTF!=null) return childTF; int count=parentTF.childCount; for(int i=0;i<count;i++){ childTF=GetChild(parentTF.GetChild(i),childName); if(childTF!=null) return childTF; } return null; } }
原文:https://www.cnblogs.com/King-of-Dark/p/13127325.html