본문 바로가기
  • 불확실한 내일을 위해
728x90

유니티 오류6

갑자기 유니티가 열리지 않을 때 컴퓨터를 껐다 켜도, 유니티를 저장하고 껐다가 켜도, 열려있는 유니티에서 새 프로잭트를 클릭해도 아무 반응이 없다면? 이런 경우 보통 라이센스가 끝난 경우가 대부분이다. 이럴때는 유니티 말고 "유니티 허브" 를 열어라 그럼 라이센스가 만료되어있을 것이다. ㅎㅎ 라이센스 만료되었다고 안내문이라도 띄워주던가.. 이럴땐 참 불친절한 유니티 .. 2023. 8. 8.
오류문 : A problem occurred evaluating project ':launcher'. > Failed to apply plugin [id 'com.android.application'] > Your project path contains non-ASCII characters. This will most likely cause the build to fail on Windows. Please move your project .. A problem occurred evaluating project ':launcher'. > Failed to apply plugin [id 'com.android.application'] > Your project path contains non-ASCII characters. This will most likely cause the build to fail on Windows. Please move your project to a different directory.... 콘솔창에 이러한 오류가 뜬다면 경로에 한글이 들어간 경우이다. 유니티 허브에 들어가서 해당 프로젝트가 [C:\Users\김철수컴퓨터\Decltop\unitytest\game] 이런식으로 경로 어떠한 곳에도 한글이 있으면 안된다. .. 2023. 5. 23.
오류문 : The name'0' does not exist the current context The name'0' dose not exist the current context if문의 중괄호 { } 안에서 선언된 변수가 중괄호 밖에서 사용되었을 때 나오는 오류문이다. if문의 변수 범위는 아래 참고 https://greenchoco.tistory.com/130 2023. 5. 22.
오류문 : Member '000000' cannot be accessed with an instance reference; qualify it with a type name instead Member '000000' cannot be accessed with an instance reference; qualify it with a type name instead static을 적용하지 않았을 때 나오는 오류 문구이다. 000000에 static을 적용해야한다. static 뜻은 아래 참고 https://greenchoco.tistory.com/137 C#기초 static 메서드 뜻 "정적인"이라는 뜻. 이를 이용하면 객체를 생성하지 않고 멤버를 사용할 수 있게 된다. 즉, 인스턴스를 만들지 않고 쓸 수 있는 메서드로, 객체를 통하지 않고클래스 이름으로 접근한다. 예를 들 greenchoco.tistory.com 2023. 5. 22.
오류문 : All compiler errors have to be fixed before you can and enter playmode! All compiler errors have to be fixed before you can and enter playmode! 유니티에서 플레이모드를 시작하려 할 때 플레이모드 시작이 안되면서 나타나는 오류 문구이다. 해결방법 : C# 스크립트에서 ;(세미콜론)이 입력되지 않았는지 확인한다. 2023. 5. 22.
C# 기초 - 오류 해석하기 팁 오류 로그는 해석하기 어려운 경우가 많은데, 오류문을 읽어보면 xxxx.xxxx.cs(6:2) 처럼 괄호안에 숫자가 보일 때가 있다.그럴 때는 6번째 줄의 2번째 글자가 잘못되었다고 알려주고 있는 것이므로 그 부분을 발견하면 쉽게 오류를 해결할 수 있다. 예를들어 아래처럼 (17, 51) 써있는 곳을 보니 ; 가 빠져있는 것을 확인할 수 있다. (errorCS1002) 2023. 5. 2.
728x90