let's say the transform has multiple children named different ways like
"a bouncing ball" "big cube" "colors" "dinosaur"
if I go through it's children like that:
for(var child:Transform in transform){
child(...)
}
does this pick transform's children at random? or alphabetically?
or some other way?