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



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

금별 0 5,536 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


번호 포토 분류 제목 글쓴이 날짜 조회
531 유니티 유니티 - 카툰풍 메시 검기 제작과정 금별 2023.07.20 3585
530 유니티 유니티 - 화염검기 제작과정 금별 2023.07.18 2649
529 2D 포토샵 - 페인트 먹물느낌의 검기 텍스쳐 제작과정 금별 2023.07.18 3383
528 유니티 유니티 쉐이더 그래프 - 지형 스캐너 이펙트 제작과정 금별 2023.07.13 2767
527 언리얼4 Unity Dev Weeks 2023: 서머너즈 워: 크로니클에서 사용한 렌더링기법과 최적화 기능개발 과정 금별 2023.07.11 2604
526 언리얼4 언리얼 - 라이트닝 이펙트 제작과정 금별 2023.07.10 2552
525 언리얼4 언리얼 - 마법진/문자 인트로 영상 제작과정 금별 2023.07.10 2310
524 언리얼4 언리얼/섭스턴스 디자인 - 화염 크랙 제작과정 금별 2023.07.10 2666
523 유니티 유니티 - 빙속성 광역 공격 효과 제작과정 금별 2023.07.10 3053
522 언리얼4 언리얼 - 스파이더맨에 나온 글리치 효과 제작과정 금별 2023.07.07 2518
521 언리얼4 언리얼 - 하트 모양의 파티클 이동 간단 제작과정 금별 2023.07.06 3762
520 언리얼4 언리얼 - 커스텀 데칼 UVs 사용예제(WorldPositionBehindTranslucency활용) 금별 2023.07.04 3136
519 언리얼4 언리얼 - (간단팁)채널 선택 및 믹싱에 내적 사용방법 금별 2023.07.04 2779
518 2D 애프터 이펙트를 활용한 불회오리/쪼개진 구체 간단 제작과정 금별 2023.07.04 2988
517 유니티 유니티 - 간단 폭발 만들기(VFX 그래프와 파티클시스템 비교) 금별 2023.06.29 4873
516 언리얼4 UE5 | AOE in Unreal Engine 5.2 Niagara Tutorial | Download Files ashif 2023.06.29 2103
515 언리얼4 언리얼5 - 반투명 갤럭시 느낌의 머트리얼 노드 제작과정 금별 2023.06.25 2261
514 언리얼4 언리얼5 - 얼음 재질 노드 제작과정 금별 2023.06.25 3802
513 언리얼4 언리얼5 - 디지털 트랜지션 생성 및 파티클 픽셀화 제작과정 금별 2023.06.25 2155
512 언리얼4 언리얼/후디니 - 디아블로 스타일 플루이드 오브 UI 이펙트 제작과정 금별 2023.06.17 2122
511 언리얼4 언리얼 - 구형 UV 활용 방법 금별 2023.06.17 3057
510 유니티 유니티 URP - 간단 바닥 화염 크랙 제작과정 금별 2023.06.12 3348

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand