Unity Deactive semua objek dalam daftar
public List<GameObject> childrens = new List<GameObject>();
void Update()
{
if(/* Something */)
{
foreach (var obj in childrens)
obj.SetActive(false);
}
}
JojoYou