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



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

금별 0 2,958 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


번호 포토 분류 제목 글쓴이 날짜 조회
739 언리얼4 언리얼 - 게임 이펙트 무엇이든 물어보세요(린반특강 2.20 오후7시30분) 금별 02.20 117
738 언리얼4 언리얼5 - 에너지 플래시 폭발 제작과정(한글자막) 금별 02.20 159
737 유니티 유니티 셰이더 그래프 - 간단한 지형스캔 효과 제작방법(한글자막) 금별 02.20 141
736 언리얼4 언리얼 - 카메라 거리에 따른 머트리얼 효과 예제(한글자막) 금별 02.19 128
735 언리얼4 언리얼 - 게임 이펙트 포트폴리오 제작 주의사항 및 실시간피드백,소통 라이브 금별 02.15 156
734 유니티 유니티 앰플라파이 셰이더 - 입체적 카드 효과 제작과정 금별 02.14 447
733 언리얼4 플랜 메시를 활용한 패닝이펙트 예제 금별 02.12 226
732 유니티 유니티 셰이더 그래프 - 2D 카툰풍 구체아우라 확산효과 제작과정 금별 02.07 372
731 언리얼4 언리얼5 - 커스텀 경로를 따라 나이아가라 플루이드 애니메이션화하는법(한글자막) 금별 02.07 186
730 언리얼4 언리얼5 - 언리얼 플루이드 리퀴드 시뮬레이션 제작과정(한글자막) 금별 02.07 165
729 2D 섭스턴스 디자인 - 화염 링텍스 제작과정(한글자막) 금별 02.07 191
728 2D 섭스턴스 디자인- 캠프파이어 불 텍스쳐시트 간단 제작예제 금별 02.06 180
727 언리얼4 언리얼 - SkyAtmosphereImage노드 간단설명 금별 02.06 168
726 언리얼4 언리얼 - 스페이스 포털 제작과정(중국어/AI한글자막) 금별 02.06 170
725 언리얼4 언리얼 - 오디오 비주얼라이제이션 제작노드 간단예제 금별 02.06 110
724 언리얼4 언리얼 - 언리얼 나나이트 기본 개념 정리 금별 02.03 216
723 2D 텍스처 압축포맷 정리 금별 02.03 145
722 유니티 유니티 - 초보자도 이해하는 URP와 성능, 그리고 모바일까지 금별 02.03 171
721 언리얼4 언리얼5.4 - 나이아가라의 스킨 캐시 데이터 엑세스 옵션 추가 금별 02.02 117
720 유니티 유니티 셰이더 그래프 - 오디오 비주얼라이저 효과 제작과정 금별 02.02 137
719 언리얼4 언리얼5 - 카툰형 메테오 레인 제작과정(한글자막) 금별 01.31 181
718 언리얼4 언리얼5 - 나이가라 활용한 아이스 스킬효과 제작과정 금별 01.29 212

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand