응용프로그램/유니티(Unity)

Unity - 에러모음집

zelkova 2017. 1. 13. 11:45

<목차로 돌아가기>

 

 

    

  에러모음집

 

에셋스토어를 켜도 글자가 나오지 않을 때

우측상단에 언어설정 선택하기

 

에셋스토어를 켜도 아무것도 나오지 않거나 마우스올려야 나올 때

Edit →  Project settings → Player → Use Direct3d 11 해제

                                              또는 Auto Graphics API For Windows해제

 

`UnityEngine.GameObject.rigidbody' is obsolete: `Property rigidbody has been 

 

deprecated. Use GetComponent<Rigidbody>() instead. (UnityUpgradable)'

 

The variable animator of Player_Ctrl has not been assigned.

You probably need to assign the animator variable of the ... script in the inspector

 

bundle identifier has not been set up correctly


There are inconsistent line endings in the ' ' script. Some are Mac OS X (UNIX) and some are Windows.

해결방법 : 파일->저장고급옵션  에서  줄끝을 Windows(CR LF) 

load failed: unkown solution item type

 

해결방법 : 설치가 꼬여서 생기는 오류임돠... 이래도 안되고 저래도 안될때 =_=.. 다시깔면됨. Unity,  Microsoft visual Studio, Framework 관련된것 반드시...모두 지우고 다시설치. 이러면 해결됨.. Simple is Best~!

Cannot implicitly convert type 'UnityEngine.Object' to 'UnityEngine.Transform'. An explicit conversion exists (are you missing a cast?)

 

구글번역기를 돌려보면

암시 적으로 'UnityEngine.Object'유형을 'UnityEngine.Transform'으로 변환 할 수 없습니다. 명시 적 변환이 존재합니다 (캐스트가 누락 되었습니까?).

 

Transform newTile = Instantiate (tilePrefab,tilePosition,Quaternion.Euler(Vector3.right*90));여기에서 에러가 났는데 맞는 형태로 암시적으로 선언된 캐스팅을 직접 지정해주면 된다.Transform newTile = (Transform)Instantiate (tilePrefab,tilePosition,Quaternion.Euler(Vector3.right*90));

 

 

 

 

 

반응형