반응형
Unity - Can't get home directory Error
유니티 프로그램을 Linux(Ubuntu)로 빌드 해서 리눅스에서 실행 하면 다음과 같은 에러 발생
Can't get home directory
또는 게임 실행은 잘 되나 마우스 클릭이나 터치를 입력 받을 때 UnityPlayer.so에서 Crash (SIGSEGV) 발생 하며 프로그램이 죽어 버립니다.
이 것은 유니티가 HOME 환경변수에서 Home Directory를 참고 할 때 문제가 발생 해서 생기는 문제 입니다.
유니티 프로그램을 실행 하기 전에
export HOME=/yourHome
하고 환경변수 설정을 하고 프로그램을 실행 하면 에러가 발생 하지 않습니다.
반응형
'Unity3D' 카테고리의 다른 글
구글 Noto Sans 폰트 & Font Icon & Font Awesome (0) | 2023.10.31 |
---|---|
Unity Finite State Machine | FSM | 유한상태머신 (0) | 2023.06.02 |
DLL 의존성 확인 | DLL dependency checking (0) | 2023.01.11 |
[Unity] transform.root.GetComponentInChildren<Canvas>() | How do you get the parent canvas? (0) | 2022.12.24 |
[Unity] Drag and Drop | RectTransformUtility.ScreenPointToLocalPointInRectangle 사용 하기 (0) | 2022.12.23 |