안녕하세요 유니티에서 무료 캐릭터 에셋을 다운로드해서 사용하는데 갑자기 아래와 같은 에러를 만났습니다.
Error: Final Depth copy attachment 0 was created with 4 samples but 8 samples were requested
찾아보니 RenderTexture에서 antialising 값이 8로 되어 있는데 이를 4로 바꿔야 한다는 것을 알게되었습니다.
_renderTexture = new RenderTexture(300, 300, 30, RenderTextureFormat.ARGB32)
{
antiAliasing = 4
};
antiAlising 값을 8이 아닌 4로 수정하니 해당 이슈가 더 이상 발생하지 않았습니다.
반응형
'Unity' 카테고리의 다른 글
Cinemachine 3인칭 Follow Camera 사용하는 방법 (0) | 2025.02.20 |
---|---|
RectTransformUtility.ScreenPointToLocalPointInRectangle (0) | 2025.02.11 |
New InputSystem을 사용해 캐릭터 이동 구현 방법 (0) | 2025.02.11 |
iOS-Unity UAAL iOS와 Unity 사이 데이터 주고 받는 방법(feat swift) (0) | 2025.02.04 |
iOS에서 uaal로 unity를 library로 사용하기 (0) | 2025.01.27 |