diff options
author | chai <chaifix@163.com> | 2022-03-10 14:07:40 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2022-03-10 14:07:40 +0800 |
commit | 22891bf59032ba88262824255a706d652031384b (patch) | |
tree | 7595439ba9966c9402d37e37cee5e8cf098757d5 /Assets/Art/Shaders/UnityChan/Unitychan_chara_hada.shader | |
parent | 8b04ea73e540067f83870b61d89db4868fea5e8a (diff) |
* move folder
Diffstat (limited to 'Assets/Art/Shaders/UnityChan/Unitychan_chara_hada.shader')
-rw-r--r-- | Assets/Art/Shaders/UnityChan/Unitychan_chara_hada.shader | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/Assets/Art/Shaders/UnityChan/Unitychan_chara_hada.shader b/Assets/Art/Shaders/UnityChan/Unitychan_chara_hada.shader deleted file mode 100644 index 501100ce..00000000 --- a/Assets/Art/Shaders/UnityChan/Unitychan_chara_hada.shader +++ /dev/null @@ -1,55 +0,0 @@ -Shader "UnityChan/Skin" -{ - Properties - { - _Color ("Main Color", Color) = (1, 1, 1, 1) - _ShadowColor ("Shadow Color", Color) = (0.8, 0.8, 1, 1) - _EdgeThickness ("Outline Thickness", Float) = 1 - _DepthBias ("Outline Depth Bias", Float) = 0.00012 - - _MainTex ("Diffuse", 2D) = "white" {} - _FalloffSampler ("Falloff Control", 2D) = "white" {} - _RimLightSampler ("RimLight Control", 2D) = "white" {} - } - - SubShader - { - Tags - { - "RenderType"="Opaque" - "Queue"="Geometry" - "LightMode"="ForwardBase" - } - - Pass - { - Cull Back - ZTest LEqual -CGPROGRAM -#pragma multi_compile_fwdbase -#pragma target 3.0 -#pragma vertex vert -#pragma fragment frag -#include "UnityCG.cginc" -#include "AutoLight.cginc" -#include "CharaSkin.cginc" -ENDCG - } - - Pass - { - Cull Front - ZTest Less -CGPROGRAM -#pragma target 3.0 -#pragma vertex vert -#pragma fragment frag -#include "UnityCG.cginc" -#include "CharaOutline.cginc" -ENDCG - } - - } - - FallBack "Transparent/Cutout/Diffuse" -} |