“Jedność niszczy wszystkie dzieci” Kod odpowiedzi

Unity usuwa wszystkie dzieci

 foreach (Transform child in transform) {
     Destroy(child.gameObject);
 }
CatgirlSimp

Jedność niszczy wszystkie dzieci

while (transform.childCount > 0) {
    DestroyImmediate(transform.GetChild(0).gameObject);
}
Concerned Curlew

Jedność niszczy wszystkie dzieci

void Update()
    {
    //put in any gameobject having children and enter playmode
        foreach (Transform child in transform)
        {
            Destroy(child.gameObject);
        }
    }
M.Bilal Nawaz

Dzieci jedności niszczą

 //put in any gameobject having children and enter playmode
        while (transform.childCount > 0)
        {
            DestroyImmediate(transform.GetChild(0).gameObject);
        }
M.Bilal Nawaz

Odpowiedzi podobne do “Jedność niszczy wszystkie dzieci”

Pytania podobne do “Jedność niszczy wszystkie dzieci”

Więcej pokrewnych odpowiedzi na “Jedność niszczy wszystkie dzieci” w C#

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu