게임 엔진
-
[Error] CS0103: The name 'RenderPipeline' does not exist 처리게임 엔진/Unity 2021. 3. 29. 19:48
error CS0103: The name 'RenderPipeline' does not exist in the current context ※ using UnityEngine.Experimental.Rendering을 using UnityEngine.Rendering으로 대체한다. 변경된 이유) Unity 2019에서 RenderPipeline이 정식 출시되면서 네임스페이스가 변경됨. 더보기 참고문헌 Unity2017.Documentation.RenderPipeline Unity2019.Documentation.RenderPipeline
-
[Warning] CS0618: 'WWW' is obsolete 처리게임 엔진/Unity 2021. 3. 24. 21:54
warning CS0618: 'WWW' is obsolete: 'Use UnityWebRequest, a fully featured replacement which is more efficient and has additional features' ※ 기존에 사용되던 WWW를 UnityWebRequest가 완전히 대체할 수 있으므로 UnityWebRequest로 변경한다. 주요 변경 사항) - 데이터를 다운로드하는 것인지 업로드하는 것인지에 따라 API를 구분해 사용하도록 변경됨. using UnityEngine; WWW www = new WWW("주소"); yield return www; import UnityEngine.Networking; UnityWebRequest www = UnityWebReq..