Converting some code shaders to ShaderGraph



Converting some code shaders to ShaderGraph

금별 3 3,459 2020.02.27 16:15

 

A follow-up to the Shader Graph intro, please read that one first if you haven't already! 

In this post I'm converting a few of the shaders I've made in the past into ShaderGraph, (the UnityPackage with all these files will go up soon :) )

Toon Lit

Original Shader (Code) : PasteBin Link 

Since custom lighting is currently not supported by ShaderGraph (if this changes, I'll put up another post for it) the Toon Lit effect has to be faked.

Create a new PBR Shadergraph

Now, the most important part of the toon lit look is the lighting.

This underlined pieces of code are all we need to convert, so how do we do this? 

Lets take it one by one. The first line needs the light direction. There is currently no node for this, so this value needs to be added via script (A very simple script, don't worry!)

We send values to shaders using Shader.SetGlobal___ ,

Since the lighting part is fake, the light direction, and the light intensity need to be included:

Shader.SetGlobalVector("_LightDirectionVec", -transform.forward);
Shader.SetGlobalFloat("_LightIntensity", dirLight.intensity);

Here's the full script : PasteBin Link 

Drop this on your Directional Light, and drag the light into the slot

Now we can get to the graph

Create a Vector3 property with the reference "_LightDirectionVec", and a Vector1 with the reference "_LightIntensity"

Make sure they are not exposed, and give them a value so the preview looks right

Here's the first line of the code, normalize the light direction. Converting code into nodes is a lot of thinking backwards, you plug the value into the function in nodes, instead of typing the fuction with the value inside in code.

So for this add the Property: Light Direction, and plug it into a Normalize node.

For this line, we need a Dot Product node, and plug in a (world)Normal Vector, and the result of the Normalize Light Direction

Next line is a bit more complicated, the SmoothStep node takes 3 inputs. The IN of Smoothstep will be the Dot Product, the 2 Edge inputs are the Offset(Vector1), and a slightly bigger value for smoothness, which is the Offset + Blur(Vector1) value. Convert these Vector1 into properties to control them in the material settings.

Before adding the _ToonTint(Color) value, the _LightIntensity needs to multiplied, it's not in the code, but is needed to fake the lighting.

Just needs a texture now,
Because the lighting is faked, this part goes a bit simpler, just add a Texture Node(convert to property), and a Sampler Texture 2D, then multiply with the lighting ramp result.

PBR Master needs to be set to Specular Workflow, with Specular set to black, and Occlusion set to something like 3. 

There it is, fake toon lighting :)

Full graph image is here, and graph file is attached

Iridescent

A simple, weird one this time, based on the Iridescent Tip 

Looking at the relevant lines, the first two can be done with handy built-in nodes.

(There is also simple noise, and gradient noise to play with, instead of Voronoi)
Fresnel Effect node is great, you can turn the Power into a property if you want for more control

Line 3. is just a texture + sample 2D, as seen before.

Instead of plugging the UV into the Sample Texture, plug in the Fresnel Effect + Noise, then multiply a Color property

Finally, add the Texture, and the iridescent effect with a slider for Brightness

Image of Full Graph 

Snow

Based on the Snow Shader Tip 

This one is a bit more complicated because of vertex manipulation

Here are the relevant lines, both vertex and surface use a Dotproduct of the normal and snowDirection, so lets start with that.

The result of this node is used in all other parts of the shader.

Multiply the Normal with the SnowHeight value, then multiply with the step result to only affect the top area. add this to Position (Object) to add a layer on top of the object, plug this result into Position of the Master Node.

For the non-snowy part, just create a texture + sample 2D like before, and invert the step result using One Minus

The Fresnel Effect node takes up most of the code here. Color the result, then multiply with the step result. Add the snow and non-snow parts together and you're done!

Image of the full graph 

 

Hope this helped you understand a bit more on how to convert code into graphs, a lot of is just searching the values and functions and finding the right node that way :)

 

Thanks for reading, and have fun!

Iridescent.shadergraph

Snow.shadergraph

ToonLit.shadergraph

Comments

키자비 2020.02.27 23:16
좋은 자료 감사합니다~^
커피맥주 2020.09.14 01:21
링크된 그림이 깨져서 이제 안보이네요 ㅠㅠ
금별 2020.09.14 18:06
https://www.patreon.com/posts/24781996

여기 원문입니다. 링크다깨졌군요 ㅠㅠ

번호 포토 분류 제목 글쓴이 날짜 조회
1319 언리얼4 Anime Aura FX in Unreal Engine 5 Niagara ashif 04.16 21
1318 언리얼4 Canon Beam VFX in Unreal Engine 5 Niagara ashif 04.15 46
1317 언리얼4 Blood Slashes in Unreal Engine 5 Niagara ashif 04.12 84
1316 언리얼4 Beam Impact FX in Unreal Engine 5 Niagara ashif 04.11 81
1315 언리얼4 【UE5+후디니】UV 커스텀 무기 디졸브 기반 빠른 모델 제작_파트 2 금별 04.09 98
1314 언리얼4 【UE5+후디니】UV 커스텀 무기 디졸브 기반 빠른 모델 제작_파트 1 금별 04.09 81
1313 언리얼4 【UE5+후디니】루빅 큐브형태 애니메이션 연출 생성과정(한글자막) 금별 04.09 90
1312 언리얼4 【UE5+후디니】Stylized형태 검기을 생성 제작과정(한글자막) 금별 04.09 89
1311 언리얼4 【UE5+후디니】 동적 디졸브 구쉴드 생성 과정(한글자막) 금별 04.09 85
1310 언리얼4 Arcane Magic Lightning Eruption FX in Unreal Engine 5 Niagara ashif 04.05 103
1309 언리얼4 언리얼 - HLSL 커스텀노드_소벨 외곽선 추출 금별 04.04 104
1308 언리얼4 언리얼 - HLSL 커스텀노드_픽셀화 효과 제작과정 금별 04.04 91
1307 언리얼4 AOE Slam FX in Unreal Engine 5 Niagara ashif 04.01 98
1306 언리얼4 Illugen 활용 절차적 지면 크랙 효과 텍스처 생성(한글자막) 금별 04.01 140
1305 언리얼4 언리얼 - 파티클 원형 궤도(Circular Orbit) 위에서 자동 정렬방법(한글자막) 금별 04.01 139
1304 언리얼4 언리얼 - 간단한 머트리얼 디졸브를 구현하는 세 가지 방법(한글자막) 금별 03.22 235
1303 언리얼4 언리얼/후디니 -VAT 이펙트 툴체인 40분 설정: Niagara 워크플로우를 구축 방법(한글자막) 금별 03.22 204
1302 언리얼4 언리얼5 - 기본 스트라이프 렌더러 재질 효과 작성 방법(한글자막) 금별 03.22 164
1301 언리얼4 언리얼5 - 나이아가라는 입자를 나선형으로 움직이며 타깃에게 공격방법(한글자막) 금별 03.22 180
1300 언리얼4 언리얼5 - 나이아가라 입자의 원형 운동을 수동으로 조작 방법(한글자막) 금별 03.22 142
1299 언리얼4 언리얼5 - 나이아가라 입자를 특정 순서로 발사하여 적을 공격 방법(한글자막) 금별 03.22 154
1298 언리얼4 언리얼5 - 나이아가라 원형으로 입자를 발사해서 타깃에게 움직이기(한글자막) 금별 03.22 138

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand