반응형
유니티 버전업그레이드만 했는데 요런 메시지가 뜬다.
AmbientOcclusion.cs(23,39): error CS1061: Type `UnityEngine.Camera' does not contain a definition for `hdr' and no extension method `hdr' of type `UnityEngine.Camera' could be found. Are you missing an assembly reference?
마침 최근에 패브릭 문제때문에 프로젝트를 갈아엎기도 해서 내 프로젝트 세팅문제인줄알고 삽질을 엄청했다.
그런데 프로젝트를 새로 만들어서 저 스크립트만 불러와도 저런 메시지가 뜨는것 아닌가...
그러다가 camear.hdr는 deprecated됐다는 것을 메소드는 발견했다.
위의 말에따라 에러가 나는 스크립트의 camera.hdr을 camera.allowHDR로 교체해주면 된다.
반응형
'Unity' 카테고리의 다른 글
유니티 Translate가 rotation 영향을 받아서 움직일 때 (0) | 2018.10.20 |
---|---|
유니티 Android SDK is missing required platform API (0) | 2018.06.13 |
유니티 갑자기 쉐이더 못불러올때 failed to open source file (0) | 2018.04.22 |
유니티 에셋 빌드시 에러 Assertion failed: Assertion failed on expression (0) | 2018.04.22 |
유니티 MissingReferenceException: The object of type 'Transform' has been destroyed but you are still trying to access it. (0) | 2018.04.21 |