foreach()
foreach()
专门用来遍历的
foreach(Transform t in children){
if(t!=transform)//t不是当前物体
Destroy(t.gameObject);
}
foreach(transform xxx in 数组名)
{
}
//xxx代表数组里的每一个元素
//foreach循环体会执行多次,执行一次的时候xxx就代表其中一个元素
只是遍历某个数组可用foreach循环
foreach(Transform t in children)
{
if (t != transform)
{
Destroy(t.gameObject);
}
}