blob: 8098da26542a9003fc5b9a3541eef1f3174a909f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
Shader "UnityChan/Eyelash - Transparent"
{
Properties
{
_Color ("Main Color", Color) = (1, 1, 1, 1)
_ShadowColor ("Shadow Color", Color) = (0.8, 0.8, 1, 1)
_MainTex ("Diffuse", 2D) = "white" {}
_FalloffSampler ("Falloff Control", 2D) = "white" {}
_RimLightSampler ("RimLight Control", 2D) = "white" {}
}
SubShader
{
Blend SrcAlpha OneMinusSrcAlpha, One One
Tags
{
"Queue"="Geometry+2"
// "IgnoreProjector"="True"
"RenderType"="Overlay"
"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
}
}
FallBack "Transparent/Cutout/Diffuse"
}
|