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



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

금별 0 4,479 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


번호 포토 분류 제목 글쓴이 날짜 조회
122 유니티 유니티 - 캐릭터 트레일 제작방법 금별 2022.07.14 2267
121 유니티 유니티 퀵팁 - 간단한 소팅 이슈 해결법 금별 2022.07.07 1826
120 유니티 유니티 쉐이더 그래프 - 빨려들어가는 이펙트 제작 Almighty Vertex 금별 2022.07.07 3154
119 유니티 유니티 - 크랙형 데칼 3종 제작과정(중국어) 금별 2022.07.05 2450
118 유니티 유니티 - 셀폭발/데칼 제작 제작과정(중국어) 금별 2022.07.05 2100
117 유니티 쿠파FX 유니티 이펙트 강의 프리뷰 - 일자크랙(22년 9월초 개강예정) 금별 2022.06.20 2350
116 유니티 유니티 - 일렁이는 반구체 제작방법 금별 2022.06.16 2693
115 유니티 유니티 - 카툰 느낌의 불/폭발효과 제작방법(중국어) 금별 2022.06.15 3087
114 유니티 유니티 - 3DS 맥스를 활용한 메쉬이펙트 제작방법들(중국어) 금별 2022.06.15 2350
113 유니티 유니티 앰플리파이 쉐이더 - 거미줄 효과 제작방법(중국어) 동영상 금별 2022.05.30 2398
112 유니티 유니티 - 다크 토네이도 제작과정 금별 2022.05.19 3222
111 유니티 유니티 - 물소용돌이 제작방법 금별 2022.05.17 3890
110 유니티 유니티 이펙트 튜토리얼 - 오브젝트 폭발 이펙트 금별 2022.04.20 2736
109 유니티 유니티 - Integrated Circuit Shader Graph 금별 2022.04.17 2421
108 유니티 유니티 - TV 글리치(지직거리는) 쉐이더 제작방법(일본어) 금별 2022.04.06 3824
107 유니티 유니티 - 발사체와 쉴드 이펙트 제작벙법(중국어) 금별 2022.03.30 2554
106 유니티 유니티 - 피격 효과 제작방법(중국어) 금별 2022.03.30 2900
105 유니티 유니티 - 불꽃놀이 이펙트 제작방법(중국어) 금별 2022.03.30 2107
104 유니티 유니티 + 블랜더 VFX tutorial : 공격 잔상 효과 제작방법 금별 2022.03.29 4044
103 유니티 유니티 쉐이더그래프 - 불이펙트 제작방법 금별 2022.03.29 3769
102 유니티 유니티 앰플리파이쉐이더 - 카드형 라이트 엣지 디졸브/디스토션 제작과정 금별 2022.03.18 3467
101 유니티 유니티 쉐이더 그래프 - Remapping Tech Art Toolbox 사진동영상new 금별 2022.03.04 3254

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand