공부/Unity

[Unity] 자식 객체 gameobject 전부 삭제하기

굴러다니다니 2023. 9. 6. 13:10
728x90
foreach (Transform child in this.transform) 
{
    Destroy(child.gameObject);
}

무리하게 while문 사용하다가 강제종료 당하지 말고

그냥 위의 방법 foreach문으로 삭제하자

 

728x90