유니티 이펙트 팁 - 데스스트랜딩 홀로그램 효과 참고해 만들기



유니티 이펙트 팁 - 데스스트랜딩 홀로그램 효과 참고해 만들기

금별 0 4,809 2019.11.19 20:48

(eVan님의 언리얼이펙트클래스정보 : https://cafe.naver.com/unrealfx/17165 )

 

 

 

 

 

I’m not sure if they had two parts inside the real game but I went like this:

 

First there is a 3d model somewhere in the world, viewed by a camera, rendering the result into a render texture. In this 3d model I have a special shader that will do the vertex noisy offset (which can be seen as transmission issues), and scanlines. Scanlines felt to be part of the 3d model, so I added them at this step.

3d model:

 

base_3dmodel

 

 

shader (the scanlines are messy, there should be a better way to do it) (big file, open it on another tab to zoom into it):

 

 

base_3dmodel_shader

 

The second part is the hologram itself. I use a simple quad with a custom shader on it. The shader will use the render texture as a base, and will put different things on top of it:

an outline (I think in DS they did it differently, as the line appears inside the 3d model as well)

color correction

while noise effect (I’m not sure about this one, in DS it looks like it’s also put on the 3d model)

chromatic aberration (which is not on DS, at least on this hologram, but I love doing it)

 

hologram

 

The outline is a multisampling of the texture with a small offset in 4 directions, that will give a thicker version of the texture, subtracting by the alpha of the base texture will give the outline.

 

 

float finalA = 0;
finalA += tex2D(_MainTex, uv + float2(offset, 0)).a;
finalA += tex2D(_MainTex, uv + float2(-offset, 0)).a;
finalA += tex2D(_MainTex, uv + float2(0, offset)).a;
finalA += tex2D(_MainTex, uv + float2(0, -offset)).a;
return saturate(finalA);

 

 

 

I put this on a custom expression node, as it avoids dealing with a lot of nodes.

 

 

For the chromatic I simply sample 3 times the texture with an offset and extract R G and B individually, then combine them and add it to the base texture. I also have a custom chromatic UV that is shifting with a mask I made, to add some variety on the effect.

 

 

 

 

The white noise is juste a noise texture panning randomly with a mask panning vertically that will remove a part of the noise.

 

Around that I made a simple hologram fake light, with a custom mesh and a custom texture:

fake_light_mesh

 

 

fake_light_mesh

 

 

There is also some “plus” floating in the air, I used a basic tiled texture with a simple shader that will shake the UV:

 

plus_pattern

 

 

Finally I used Cinemachine to add some fake random movement and add a bit of life, and made a animation to trigger everything for the last shot.

 

Feel free to ask me more questions if you want more details on a specific point.

 

 

 

 

Comments


번호 포토 분류 제목 글쓴이 날짜 조회
180 2D 섭스턴스 디자인 - 패턴 텍스쳐 제작 FX TUTORIAL 댓글+2 금별 2021.04.23 3700
179 유니티 유니티 쉐이더그래프 - 물방울 쉐이더제작 튜토리얼 링크new 금별 2021.04.22 3630
178 유니티 유니티 쉐이더 그래프 - 노이즈를 통한 버택스 꿀렁거림표현 금별 2021.04.09 5406
177 유니티 유니티 앰플리파이 쉐이더 - 제트 엔진 쉐이더 제작 금별 2021.04.01 3860
176 유니티 유니티 이펙트 튜토리얼 - 데몬즈 소울 느낌의 자연스러운 디졸브 사라짐 효과 금별 2021.04.01 3180
175 언리얼4 언리얼4 나이아가라 - 인퍼머스의 스모크 파워효과 느낌 만들기 스피드메이킹 금별 2021.03.28 3982
174 언리얼4 언리얼4 튜토리얼 - 피벗 페인트 활용 시뮬레이션 제작 금별 2021.03.28 3878
173 유니티 유니티 쉐이더그래프 기본 설명자료 - Intro to Shader Graph 금별 2021.03.21 3047
172 유니티 유니티 - 화염 툰 쉐이더 튜토리얼 금별 2021.02.24 3669
171 언리얼4 언리얼4 - 뇌전 효과 제작영상(나아이가라) 금별 2021.02.20 4569
170 언리얼4 언리얼4 - 카툰형 폭발 이펙트 제작과정 금별 2021.02.20 5157
169 언리얼4 Circuit FX in UE4 Niagara Tutorial ashif 2021.02.19 2372
168 언리얼4 언리얼4 + 후디니 - 커스텀 컬리젼 메시 튜토리얼 | Houdini UCX FBX Export / UE4 Houdini VFX 금별 2021.02.07 4473
167 유니티 유니티 - Christmas Lootbox 이펙트 / 제작과정 사진 금별 2021.02.04 3222
166 유니티 유니티 - 솟구치는 물줄기 이펙트 제작과정 금별 2021.01.23 4426
165 유니티 유니티 - 후디니를 활용한 중국의 시네마틱 이펙트 연출 제작과정 금별 2021.01.13 3406
164 언리얼4 언리얼4 - 검기이펙트 만들기 간단 튜토리얼 금별 2020.12.18 5858
163 유니티 유니티 - 트레일 만들기 미니팁 금별 2020.12.17 5027
162 언리얼4 언리얼4 - 굴절 픽셀을 활용한 서리효과 만들기 금별 2020.12.17 4573
161 언리얼4 언리얼4 머터리얼 에디터 아주 짧은팁(열려있는 탭사이 이동) 금별 2020.12.12 2897
160 3D 3DS 맥스 팁 - UV로 부터 버택스 컬러 그라디언트 활용법 금별 2020.11.17 3292
159 언리얼4 파이어볼 UV 흐름 예제 금별 2020.11.07 3401

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand