Saltar al contenido

unidad obtener ejemplo de código de objeto de juego hijo

Ejemplo 1: encontrar el hijo de la unidad del objeto del juego

gameObject.transform.Find("ChildGameObject").gameObject;

//This insures that you are finding the child instead of finding another
//GameObject's Child.

Ejemplo 2: cómo conseguir un hijo de un objeto de juego

// By Name
GameObject Child = GameObjectsTransform.Find("NameOfChild").gameObject

// By index
GameObject Child = GameObjectsTransform.GetChild(The child index).gameObject

Ejemplo 3: unidad consigue hijo

GameObject Child;
Child = transform.GetChild(0).gameObject;

Ejemplo 4: unidad cómo obtener un hijo de un objeto de juego

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

Ejemplo 5: componente de búsqueda de Unity del objeto secundario

//Returns the component of Type type in the GameObject or 
//any of its children using depth first search.

//A component is returned only if it is found on an active GameObject.

Transform transform = GetComponentInChildren<Transform>();

Ejemplo 6: unidad obtiene objeto de juego hijo

//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;
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *