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



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

금별 0 3,655 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


번호 포토 분류 제목 글쓴이 날짜 조회
1071 언리얼4 Enchanting Floating Ice Book Effect in Unreal Engine 5.5 Niagara ???? Trailer ashif 12.22 10
1070 언리얼4 Fire Vortex Shield Effect in Unreal Engine 5.5 Niagara ???? Trailer ashif 12.22 19
1069 언리얼4 언리얼5 - 나이아가라 모프 캐릭터 제작과정(한글자막) 금별 12.19 53
1068 유니티 유니티 - 스텐실 버퍼 활용 fake hole 제작과정(한글자막) 금별 12.19 52
1067 유니티 유니티 - 상호작용형 파티클 제작과정(한글자막) 금별 12.19 49
1066 유니티 유니티 - 처음 시작하는 Volumetric Fog Shader에 관한 설명(한글자막) 금별 12.17 67
1065 언리얼4 언리얼5 - 스플라인과 스플라인 메쉬 활용방법(한글자막) 금별 12.17 52
1064 유니티 유니티 - 라바 램프 유니티 셰이더 그래프 제작과정(한글자막) 금별 12.17 60
1063 언리얼4 언리얼 - LOL 소드 데몬 W 특수효과 모작 분석(한글자막) 금별 12.17 49
1062 언리얼4 언리얼5 - 나이아가라 네트워크 볼륨 렌더러 번개 효과 제작과정(한글자막) 금별 12.11 122
1061 언리얼4 언리얼5 - 리얼리스틱 물고리 제작과정 part1(한글자막) 금별 12.11 126
1060 유니티 유니티 - 간단한 이펙트 경로 애니메이션 사용예제(한글자막) 금별 12.11 123
1059 언리얼4 언리얼 - 셰이더로 시계 제작하는 과정 금별 12.11 80
1058 언리얼4 Toon Explosion in Unreal Engine 5.5 Niagara: Complete Step-by-Step Tutorial ashif 12.04 105
1057 언리얼4 언리얼5 - 프렉쳐 VAT 적용방법(한글자막) 금별 11.25 178
1056 언리얼4 언리얼/유니티 - 판타지풍 체력계 제작과정(한글자막) 금별 11.25 187
1055 언리얼4 언리얼 5.4 - VDB 클라우드 제작과정(한글자막) 금별 11.25 153
1054 언리얼4 언리얼 UEFN - VAT를 활용한 언리얼 로고 애니메이션 제작과정(한글자막) 금별 11.20 174
1053 언리얼4 언리얼 - Quantize shader를 활용한 툰효과 사용 예제 금별 11.20 165
1052 2D 섭스턴스 디자인 - 쇼크웨이브 텍스처를 만드는 간단한 방법 금별 11.20 239
1051 언리얼4 언리얼 - 중국의 어느 아티스트 VFX 기본 리소스 라이브러리 예제 금별 11.20 240
1050 언리얼4 언리얼 - 모듈 스크립트 - 리더를 따라 움직이기 금별 11.20 157

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand