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



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

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


번호 포토 분류 제목 글쓴이 날짜 조회
218 언리얼4 언리얼 - 구형 디졸브 폭파 제작방법 금별 2022.01.24 2550
217 언리얼4 언리얼4 - 페이크 색수차 효과(facking chromatic aberration) 금별 2022.01.24 4036
216 유니티 유니티 - 수속성 타격체 효과 제작과정 금별 2022.01.12 2840
215 유니티 유니티 - 꿀렁거리는 촉수 쉐이더 제작과정 금별 2021.12.30 3371
214 유니티 유니티 - 달 움직임 쉐이더 표현 금별 2021.12.30 3532
213 언리얼4 언리얼4 - Particle Module : Color 한글설명 금별 2021.12.25 2418
212 2D 애프터이펙트 - 화염 시퀀스 효과 제작 금별 2021.12.23 7590
211 언리얼4 언리얼4 - 쇼크웨이브 / 그라운드 이펙트 제작과정 2 금별 2021.12.20 2706
210 2D 섭스턴스 디자인/언리얼4 - 움푹 패인 데칼 제작 금별 2021.12.20 2859
209 언리얼4 언리얼4 - 방사형 그라디언트와 외적 사용한 굴절링 제작노드 예제 금별 2021.12.14 3104
208 2D 애프터이펙트 - 루핑 빔 텍스쳐 제작방법(중국어) 금별 2021.12.14 2686
207 2D 애프터이펙트 - 원형 검기 텍스쳐 제작방법(중국어) 금별 2021.12.14 5838
206 유니티 유니티 - 검기 이펙트 기본부터 캐릭터에 붙이는 전체제작과정(중국어버젼) 금별 2021.12.12 3396
205 유니티 유니티 - 워터 밴딩 효과 제작과정 금별 2021.12.12 2698
204 유니티 유니티 앰플리파이 쉐이더 - 반짝거리는 별 이펙트 제작 금별 2021.12.11 5409
203 언리얼4 언리얼4 - 초간단 기본 디졸브 머트리얼 노드 금별 2021.12.11 4828
202 언리얼4 언리얼4 - 아우라 이펙트 머트리얼 제작 노드 참고자료 금별 2021.12.11 4284
201 언리얼4 언리얼4 - 월드 포지션 활용 쉴드 응용 머트리얼 노드 금별 2021.12.11 3893
200 언리얼4 언리얼4 - 매지컬 쉴드 제작 머트리얼 노드 금별 2021.12.11 4117
199 언리얼4 언리얼4 - 화염검 이펙트 제작 과정(중국어) 금별 2021.12.06 2639
198 언리얼4 언리얼4 - 쇼크웨이브 / 그라운드 이펙트 제작과정 댓글+1 금별 2021.12.02 3417
197 언리얼4 언리얼4 + 후디니 활용 구체 변형 효과 예제 댓글+1 금별 2021.12.01 2495

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand