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



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

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


번호 포토 분류 제목 글쓴이 날짜 조회
444 언리얼4 언리얼 - 노이즈에 그라데이션 반영 금별 2023.03.30 2543
443 언리얼4 언리얼 - UV 부풀어 보이게 하는 팁 금별 2023.03.30 2382
442 언리얼4 언리얼 - Polar UV에 대한 간단팁 금별 2023.03.30 2644
441 언리얼4 언리얼4 - 머트리얼로 버블 느낌 구현 금별 2023.03.26 2750
440 유니티 유니티 - 레이저 채찍으로 용소환 바닥 크랙생성 제작튜토리얼 금별 2023.03.26 2875
439 유니티 유니티 앰플리파이 쉐이더 - 모델의 조각/분해/축중심회전 금별 2023.03.26 2188
438 3D 후디니- 그리드를 활용한 충격파 그라운드스파이크 간단제작과정 금별 2023.03.26 2426
437 언리얼4 언리얼 - FFT Ocean Flipbook : Blender 및 UE를 사용하여 생성 및 샘플링하는 방법 금별 2023.03.20 2182
436 언리얼4 언리얼 - 무지갯빛 버블 쉐이더 제작과정 금별 2023.03.17 2477
435 유니티 유니티 - 레거시 쉐이더를 쉐이더 그래프에서 커스텀 함수로 포팅 제작과정 금별 2023.03.15 2383
434 언리얼4 언리얼 5.1 - Creating cinematic VFX from scratch 금별 2023.03.14 2269
433 유니티 유니티 - 간단한 시퀀스 보간 블랜드 제작과정 금별 2023.03.09 2346
432 언리얼4 언리얼 - 회전하는 2D 소용돌이 쉐이더 제작노드 금별 2023.03.08 3065
431 언리얼4 언리얼 - Cairo Tiling 제작노드 및 설명영상 금별 2023.03.08 2263
430 언리얼4 언리얼 - 머터리얼 에디터 4가지 활용 팁 금별 2023.03.08 1972
429 유니티 유니티 - 크리처 소환 이펙트 제작과정 금별 2023.03.08 3768
428 유니티 유니티 - AI 활용한 쉐이더 제작 금별 2023.03.07 3587
427 2D 스테이블 디퓨전을 활용한 AI 시퀀스 텍스쳐 제작방법 금별 2023.03.07 4997
426 언리얼4 언리얼 - 메쉬에 아웃라인 머트리얼 간단 제작방법 금별 2023.03.04 2701
425 유니티 쿠파 유니티이펙트 취업 클래스 실제강의 파도,워터 쇼크웨이브 간단 제작과정 금별 2023.03.04 3240
424 언리얼4 언리얼5 - 스파크 라이트닝 제작과정 금별 2023.03.01 2194
423 언리얼4 언리얼 - 외곽이 꿀렁되는 UMG 머트리얼 금별 2023.02.28 2765

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand