Unity Error (4) 썸네일형 리스트형 Json 데이터를 불러오지 못하다. 구글 드라이브 시트에서 불러와서 쓰는 데이터가 있는데 플레이를 하면 텅빈 텍스트만 계속 노출이 되는 것이다. 스크립트 에러인 줄 알고 몇 시간을 코드 뜯어보고 바꿔보고 했는데... 혹시나 하고 뒤늦게 Json 파일을 봤더니 뜬금없이 \r 문제가 중간에 끼여있었다. using System.Text.RegularExpressions; using 선언을 해주고 string cutWord = "['\r']"; string stringList[i] = Regex.Replace(stringList[i], cutWord, ""); '\r'을 삭제해 주는 간단한 코드. [유니티] NullReferenceException: Object reference not set to an instance of an object NullReferenceException: Object reference not set to an instance of an object 여러 이유가 있지만 일단 현재 나타난 상황은 - 참조하고 있어야 할 내용이 존재하지 않는 경우 뜨는 에러. 몬스터 데이터를 Awake로 불러오는데 몬스터 데이터 파일 주소 선언을 Awake로 같이 불러오는 것으로 설정. 몬스터 데이터 파일 주소 선언을 Start로 고치니 바로 수정 되었음. unable to install additional SDK platform. Error문구 Unable to install additional SDK platform. Please run the SDK Manager manually to make sure you have the latest set of tools and the required platforms installed. See the Console for details. - 빌드를 하면서 발견되었던 에러. 추가적인 SDK 를 설치 할 수 없다는 말. API를 29로 업데이트하면 되는데 Unity 2019 버전은 API29로 자동으로 업데이트 해주지 않는다. 해결방법 - 관리자모드로 Unity Hub 실행. Edit > Project Setting > Player 에서 Target API Level 을 29로 설정한 후 .. Screen position out of view frustum Screen position out of view frustum (screen pos 383.720459, 975.000000) (Camera rect 1 975 798 0) UnityEngine.GUIUtility:ProcessEvent(Int32, IntPtr) 해결방법 - 저장 후 종료하고 다시 켜기. or - 카메라 새로 만들어서 속성 똑같이 주기. 이전 1 다음