I started using #pragma strict and have the error cant convert object to transform, how would i loop through the children of a transform without errors strongly typed?
var thing:Transform;
Function Start(){
for(var child:Transform in thing){
//do stuff
}
}
↧