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



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

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


번호 포토 분류 제목 글쓴이 날짜 조회
358 유니티 유니티 앰플리파이 쉐이더 - 거미줄 효과 제작방법(중국어) 동영상 금별 2022.05.30 2398
357 언리얼4 언리얼4 나이아가라 - 흩뿌려지는 형태의 디졸브 제작방법 금별 2022.11.03 2404
356 언리얼4 언리얼 - 노출 변화화에 상관업이 이미시브 색상을 유지하는 방법 금별 2023.05.10 2406
355 언리얼4 언리얼 - 엠버젠활용한 볼륨의 랜덤 회전 생성 적용 간단팁 금별 2024.04.01 2409
354 언리얼4 언리얼 나이아가라 - 캐릭이 불타는 효과 제작방법 금별 2022.10.09 2414
353 유니티 Skeleton Mage Summon With Shaders and Textures 금별 2019.08.20 2418
352 유니티 유니티 - Integrated Circuit Shader Graph 금별 2022.04.17 2421
351 유니티 유니티 쉐이더 그래프 - 3D 스캔 이펙트 제작방법 금별 2022.08.24 2423
350 유니티 유니티 포스트프로세스 - 집중선 효과 제작과정 금별 2023.05.18 2426
349 유니티 유니티 앰플리파이쉐이더 - 구형 프렉쳐 이펙트 제작방법 금별 2023.04.11 2428
348 언리얼4 언리얼4 - 머트리얼로 버블 느낌 구현 금별 2023.03.26 2438
347 유니티 유니티 - 수속성 타격체 효과 제작과정 금별 2022.01.12 2439
346 언리얼4 언리얼 - Stylized 포스트 프로세스 머트리얼 튜토리얼 금별 2022.06.06 2440
345 2D 포토샵 - 간단 카툰 크랙 텍스쳐 제작방법 금별 2023.04.08 2444
344 유니티 유니티 - 포션병 액체 효과 제작과정 금별 2023.08.06 2448
343 유니티 유니티 - 귀칼 젠이츠 번개의 호흡 연출예제 제작과정 설명영상 금별 2023.08.21 2450
342 유니티 유니티 - 크랙형 데칼 3종 제작과정(중국어) 금별 2022.07.05 2450
341 언리얼4 언리얼 간단팁 - 패턴 노드 제작방법 금별 2022.05.28 2450
340 언리얼4 언리얼 간단팁 - 빨려들어가는 범프옵셋 제작 노드 댓글+2 금별 2022.05.30 2456
339 유니티 유니티 셰이더&렌더링 에센스(retr0) 금별 2020.02.16 2457
338 유니티 유니티 - Stylized 도트화 이펙트 제작과정 금별 2023.08.23 2458
337 2D 포토샵 - 간단 플레어 텍스쳐 제작방법 금별 2023.04.08 2463

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand