Legacy Documentation: Version 2017.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Transform.GetChild

Switch to Manual
public function GetChild(index: int): Transform;

Parameters

index Index of the child transform to return. Must be smaller than Transform.childCount.

Returns

Transform Transform child by index.

Description

Returns a transform child by index.

#pragma strict
public var meeple;
public var grandChild;
//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;

Did you find this page useful? Please give it a rating: