Horje
unity get child Code Example
unity access child
// To acces a child of a gameObject use the combination below
parentGameObject.transform.GetChild(0).gameObject
unity get child
GameObject Child;
Child = transform.GetChild(0).gameObject;
unity how to get a child from a gameobject
//For unity engine
GameObject.transform.GetChild(The child index).transform;
unity get child gameobject
//Instantiate Prefab
GameObject originalGameObject  = Instantiate(prefab);

//To find `child1` which is the first index(0)
GameObject child2 = originalGameObject.transform.GetChild(0).gameObject;

//To find `child2` which is the second index(1)
GameObject child2 = originalGameObject.transform.GetChild(1).gameObject;

//To find `child3` which is the third index(2)
GameObject child3 = originalGameObject.transform.GetChild(2).gameObject;
unity find child by name
   aFinger = transform.Find("LeftShoulder/Arm/Hand/Finger");
unity get child

GameObject originalGameObject = GameObject.Find("MainObj");
GameObject child = originalGameObject.transform.GetChild(0).gameObject;





Csharp

Related
unity round to x decimals Code Example unity round to x decimals Code Example
c# generate random int in range Code Example c# generate random int in range Code Example
unity change tmp text from script Code Example unity change tmp text from script Code Example
c# random number between Code Example c# random number between Code Example
unity change particle system sorting layer via script Code Example unity change particle system sorting layer via script Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9