반응형
Notice
Recent Posts
Recent Comments
Link
안 쓰던 블로그
[유니티] 에러 MissingReferenceException: The object of type 'RectTransform' has been destroyed but you are still trying to access it. 본문
유니티/개발
[유니티] 에러 MissingReferenceException: The object of type 'RectTransform' has been destroyed but you are still trying to access it.
proqk 2021. 8. 3. 19:24반응형
MissingReferenceException: The object of type 'RectTransform' has been destroyed but you are still trying to access it. Your script should either check if it is null or you should not destroy the object.
오브젝트를 Destroy 하려는데 이런 에러가 뜬다면..
어딘가에서 선언한 RectTransform이 private라서 접근이 안 되는지 확인
혹은 다른 함수 안에서 선언해서 함수가 종료되면서 Destroy 되어버린 게 아닌지 확인
Destroy하는 시점에 해당 게임오브젝트의 RectTransform에 접근 가능할 수 있으면 해결
반응형
'유니티 > 개발' 카테고리의 다른 글
Prefab으로 생성한 Button 오브젝트를 클릭할 때마다 효과음 재생하기 (0) | 2021.08.04 |
---|---|
Transform[] 의 Destroy 및 GetComponentsInChildren의 오브젝트 누적 문제와 해결 (초기화 에러) (0) | 2021.08.03 |
Button Prefab에 Onclick() 추가하기!!!! (1) | 2021.08.03 |
GridLayoutGroup에 소속된 오브젝트의 position 가져오기 (0) | 2021.08.01 |
유니티 안드로이드 APK, AAB 빌드 방법 2021 ver (쉬운방법) (4) | 2021.07.03 |
Comments