“Como fazer referência a uma unidade infantil GameObject” Respostas de código

Como fazer referência a uma unidade de objeto infantil

    private void Start()
    {
        parentObject = GameObject.Find("Parent");// The name of the parent object
        childObject = parentObject.transform.GetChild(0).gameObject; // the parent index (starting from 0)
    }
Bonus

Unidade Crie um objeto infantil

		// spawns object
        objToSpawn = new GameObject("Start");

        // add Components
        objToSpawn.AddComponent<Rigidbody>();
        objToSpawn.AddComponent<MeshFilter>();
        objToSpawn.AddComponent<BoxCollider>();
        objToSpawn.AddComponent<MeshRenderer>();

        // sets the obj's parent to the obj that the script is applied to
        objToSpawn.transform.SetParent(this.transform);
RyanGar46

unidade como conseguir uma criança de um objeto de games

//For unity engine
GameObject.transform.GetChild(The child index).transform;
Open Oryx

Como fazer referência a uma unidade infantil GameObject

Transform[] transforms = this.GetComponentsInChildren<Transform>();
 
 foreach(Transform t in transforms)
 {
     if (t.gameObject.name == "Child")
     {
         Debug.Log ("Found " + t);
     }
 }
Smoggy Skimmer

Respostas semelhantes a “Como fazer referência a uma unidade infantil GameObject”

Perguntas semelhantes a “Como fazer referência a uma unidade infantil GameObject”

Mais respostas relacionadas para “Como fazer referência a uma unidade infantil GameObject” em C++

Procure respostas de código populares por idioma

Procurar outros idiomas de código