unity how to destroy all children in gameobject code example
Example: unity delete all children
foreach (Transform child in transform) {
Destroy(child.gameObject);
}
foreach (Transform child in transform) {
Destroy(child.gameObject);
}