instacie gameobject as a child unity code example
Example 1: how to reference a child object unity
private void Start()
{
parentObject = GameObject.Find("Parent");
childObject = parentObject.transform.GetChild(0).gameObject;
}
Example 2: unity how to get a child from a gameobject
GameObject.transform.GetChild(The child index).transform;
Example 3: unity create a child object
objToSpawn = new GameObject("Start");
objToSpawn.AddComponent<Rigidbody>();
objToSpawn.AddComponent<MeshFilter>();
objToSpawn.AddComponent<BoxCollider>();
objToSpawn.AddComponent<MeshRenderer>();
objToSpawn.transform.SetParent(this.transform);