728x90

유니티 145

[Unity] Renderer.staticShadowCaster 의 의미. LightMap 굽는데 영향이 있나? Static 플래그와는 무슨 관계일까? 에 대한 짧은 결론.

유니티 엔진에서 Mesh Renderer, Line Renderer 등 Renderer 를 상속받은 컴포넌트에 Static Shadow Caster 라는 플래그가 있다. Lighting 헤더 아래에 Cast Shadows, Contribute Global Illumination 사이에 떡 하니 (Cast Shadow를 On 으로 했을 때만 등장) 위치해 있어서 굉장히 중요해보이는 플래그인데, Static Shadow Caster 에 마우스를 롤오버 해서 설명을 보면 이렇다. Static Shadow CasterWhen enabled, Unity considers this renderer as being static for the sake of shadow rendering. If the SRP imple..

[UnityAsset] 던전 컨셉 3D 환경/배경 POLYGON Dungeons - Low Poly 3D Art by Synty

던전을 구성할 수 있는 3D 프랍들이 가득한 환경 에셋 패키지에셋 파일 개수 : 2375개 에셋 페이지 바로가기POLYGON Dungeons - Low Poly 3D Art by Syntyhttps://prf.hn/click/camref:1011lvz7h/pubref:synty_dungeon/destination:https%3A%2F%2Fassetstore.unity.com%2Fpackages%2F3d%2Fenvironments%2Fdungeons%2Fpolygon-dungeons-low-poly-3d-art-by-synty-102677 POLYGON Dungeons - Low Poly 3D Art by Synty | 3D 던젼 | Unity Asset StoreElevate your workflow w..

[Unity] "라이트매핑에 자주 발생하는 다섯 가지 문제와 솔루션" 요약 정리

Unity Blog 에 올라온 글을 읽고 핵심만 요약 정리.(원문 : 5 common lightmapping problems and tips to help you fix them) 라이트매핑에 자주 발생하는 다섯 가지 문제1. 씬에 베이크된 전역 조명이 없는 경우 (No Baked Global Illumination in the scene)2. 오브젝트에서 조명이 누락된 경우 (Objects are missing lighting)3. 발광 머티리얼이 렌더링되지 않는 경우 (Emissive materials are not rendering)4. 평평한 노멀 맵 (Flat normal maps)5. 스페큘러 반응이 누락된 경우 (Missing specular response)  각 해결 방법1. 씬에 베이크..

[Unity] 라이트맵 디코딩 DecodeLightmap 함수와 인코딩 방식 RGBM, dLDR

라이트맵 텍스쳐를 셰이더에서 연산할 때 아래 DecodeLightmap() 함수를 활용.인코딩된 라이트맵을 디코딩하는 함수. 플랫폼에 따라 인코딩 방식이(RGBM, dLDR) 다를 수 있음. "UnityCG.cginc"fixed3 DecodeLightmap (fixed4 color)Unity 라이트맵에서 컬러를 디코딩합니다(플랫폼에 따라 RGBM 또는 dLDR). RGBM (RGB Multiplier) 인코딩알파 채널에 Multiplier 저장.RGBM 범위Linear : 0 ~ 34.49(5^2.2)GAmma : 0 ~5 dLDR (Double Low Dynamic Range)  인코딩모바일 플랫폼에서 사용.범위 [0.2] 를 [0,1]에 매핑. 2보다 큰 Baked 광원 강도는 고정됨.디코딩값Gamm..

[Unity][Error] 프로젝트 열 때 "No valid user created or default window layout found." 에러 간단 해결 방법

"No valid user created or default window layout found." 에러 간단한 해결 방법을 소개합니다. 유니티 템플릿으로 프로젝트를 새로 생성하고 열려고 할 때, 아래와 같은 에러가 발생. Missing Default LayoutNo valid user created or default window layout found. Please revert factory settings to restore the default layouts. Unity Editor를 열면서 참조하는 것처럼 보이는 Default window layout을 찾지 못했다는 내용입니다. 공장 초기화 셋팅(Factory Settings)로 복구(Restore)해서 기본 레이아웃으로 돌릴건지, 종료할 건지..

[Unity Asset] Bakery 에서 특정 메시에 Lightmap 이 정상 적용되지 않는 문제

Bakery 사용할 때, 다른 PC에서 체크아웃 받았거나 할 때 라이트맵이 정상적으로 보이지 않는 문제. 해결 방법.1. fbx 파일을 Reimport 한다.2. UV 패딩 데이터를 asset 으로 저장 후 공유. [Mene > Bakery > Utilities > Save UV Padding to asset] Bakery FAQ 초반에 등장하는 이슈. 중요.How do I use git/collab/other version control system with Bakery?(Bakery 를 version control system 에서 사용하려면?)https://geom.io/bakery/wiki/index.php?title=How_do_I...#How_do_I_use_git.2Fcollab.2Fothe..

[Unity] 프리팹과 프리팹의 변형, 프리팹 배리언트 (Prefab Variant)

Unity의 프리팹 바리언트(Prefab Variant) 는 원본 Prefab을 기반으로 하되, 다른 속성이나 구성을 가질 수 있는 변형된 Prefab이다. 이를 통해 원본 Prefab을 수정하지 않고도 다양한 스타일이나 특성을 갖는 게임 오브젝트를 간편하게 생성할 수 있다. Prefab Variant 는 파란 정육면체 아이콘에서 우측 면에 빗금이 쳐진 모양으로 보여짐.프리팹 바리언트는 원본 프리팹을 일부 수정한 형태로 저장하고 관리하면서, 원본 프리팹을 변경 없이 유지할 수 있다. 프리팹 바리언트를 수정한 내용을 원본 프리팹에도 반영할 수 있음. Prefab Variant 활용 예시적 캐릭터 생성: 적 캐릭터의 Prefab을 만들고, 이를 기반으로 Prefab Variant를 생성한다. 이를 활용하여 ..

[UnityAsset] 피드백 연출 모음 에셋 FEEL!

게임 내에서 일어날 수 있는 다양한 피드백 연출들 모음.손쉽게 연출 추가, 편집할 수 있게 해주는 에셋 도구. FEELhttps://prf.hn/click/camref:1011lvz7h/pubref:feel/destination:https%3A%2F%2Fassetstore.unity.com%2Fpackages%2Ftools%2Fparticles-effects%2Ffeel-183370 Feel | Particles/Effects | Unity Asset StoreUse the Feel tool for your next project. Find this and more particle & effect tools on the Unity Asset Store.assetstore.unity.com 웹페이지 온라인..

유니티 에셋스토어 2024 스프링 세일(Spring Sale) 시작! 추천 에셋 3종

75,000개 이상의 인기 에셋을 최대 70% 할인 중입니다. 유니티 에셋스토어 바로가기 https://prf.hn/click/camref:1011lvz7h/pubref:store_main/destination:https%3A%2F%2Fassetstore.unity.com%2Fko-KR 에셋스토어 여러분의 작업에 필요한 베스트 에셋을 찾아보세요. 유니티 에셋스토어가 2D, 3D 모델, SDK, 템플릿, 툴 등 여러분의 콘텐츠 제작에 날개를 달아줄 다양한 에셋을 제공합니다. assetstore.unity.com 이벤트 할인 기간: 4. 17 ~ 5/9(목) 오후 3시 59분까지 게임 출시 필수 에셋 3종 추천 1. Cross-Platform Native Plugins : Essential Kit (Mobi..

[Unity] 메시 폴리곤 줄이기/단순화 Mesh Decimator/Simplifier

메시의 형태를 크게 해치지 않으면서 폴리곤을 자동으로 줄여주는 도구. 에셋 : AutoLOD - Mesh Decimator https://prf.hn/click/camref:1011lvz7h/pubref:meshdecimator/destination:https%3A%2F%2Fassetstore.unity.com%2Fpackages%2Ftools%2Futilities%2Fautolod-mesh-decimator-185662 AutoLOD - Mesh Decimator | 유틸리티 도구 | Unity Asset Store Use the AutoLOD - Mesh Decimator from Léo Chaumartin on your next project. Find this utility tool & more ..

728x90
반응형