“Jedność zdobądź wszystkie dzieci” Kod odpowiedzi

Jedność zdobądź listę dzieci

List<Transform> children = new List<Transform>(transform.GetComponentsInChildren<Transform>());
//!!!!DISCLAMER!!!! This will also include the parent object for whatever reason.
//Heres a less elegant solution that wont include parent:
List<Transform> children = new List<Transform>();
foreach (Transform tr in transform) children.Add(tr);
Stormy Starling

Jedność zdobądź dziecko

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

Jedność zdobądź wszystkie dzieci

foreach (Transform child in parent) {
  //Your code
}
TC5550

Jedność zdobądź wszystkie dzieci

foreach (Transform child in transform)     
Clear Chipmunk

Odpowiedzi podobne do “Jedność zdobądź wszystkie dzieci”

Pytania podobne do “Jedność zdobądź wszystkie dzieci”

Więcej pokrewnych odpowiedzi na “Jedność zdobądź wszystkie dzieci” w C#

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

Przeglądaj inne języki kodu