index | 要返回的子变换的索引。必须小于 Transform.childCount。 |
Transform 按索引查找子变换。
按索引返回子变换。
如果变换没有子级,或者 index 参数的值大于子级的数量,则会生成错误。在这种情况下,将给出“Transform child out of bounds”错误。子级的数量可以通过 childCount 提供。
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public Transform meeple; public GameObject grandChild;
public void Example() { //Assigns the transform of the first child of the Game Object this script is attached to. meeple = this.gameObject.transform.GetChild(0);
//Assigns the first child of the first child of the Game Object this script is attached to. grandChild = this.gameObject.transform.GetChild(0).GetChild(0).gameObject; } }