유니티 개발하면서 오브젝트를 제거할 때 보통 Destroy() 함수를 사용하는데요. 그런데 DestroyImmediate()라는 녀석도 있습니다. 영어 해석을 해보면 "지금 당장 삭제해!" 가 될텐데요. Destroy() 와 DestroyImmediate()의 차이점을 알고 계신가요? 구글링을 해보니 이렇게 나오네요 Destroy() will set the object to null at the end of the frame and whereas DestroyImmediate() function immediately set object reference to null (참고) Destroy() 는 프레임 제일 끝에서 null을 만들지만 DestroyImmedaite()는 바로 null을 만들어버린다. 보..