1、遍历Transform直接子transform
private void Start() { var Equipment = building.transform.FindChild("building/building/Equipment"); foreach (Transform tran in Equipment) { Debug.LogError(tran); } }
2、递归遍历该GameObject的所有子GameObject
public void Awake() { Recursive(gameObject); } //递归遍历该GameObject的所有子GameObject private static void Recursive(GameObject parenGameObject) { foreach (Transform child in parenGameObject.transform) { Recursive(child.gameObject); Debug.LogError(child); } }
原文地址:https://www.cnblogs.com/Study088/p/8971280.html
时间: 2024-09-30 05:10:49