“Jedność zdobądź listę 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ź 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ź listę dzieci”

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

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

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

Przeglądaj inne języki kodu