forked from przemyslawzaworski/Unity3D-CG-programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwireframe.shader
52 lines (47 loc) · 1 KB
/
wireframe.shader
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
42
43
44
45
46
47
48
49
50
51
52
//Shader uses screen-space partial derivatives, works the best with terrain meshes.
Shader "Wireframe"
{
Properties
{
[Header(Settings)] [Toggle] _transparency ("Transparency", Float) = 1
}
Subshader
{
Pass
{
Cull Off
CGPROGRAM
#pragma vertex vertex_shader
#pragma fragment pixel_shader
#pragma target 3.0
struct structure
{
float4 gl_Position : SV_POSITION;
float3 vertex : TEXCOORD0;
};
float _transparency;
structure vertex_shader (float4 vertex:POSITION)
{
structure vs;
vs.gl_Position = UnityObjectToClipPos (vertex);
vs.vertex = vertex;
return vs;
}
float4 pixel_shader (structure ps) : COLOR
{
float2 p = ps.vertex.xz;
float2 g = abs(frac(p - 0.5) - 0.5) / fwidth(p);
float s = min(g.x, g.y);
float4 c = float4(s,s,s, 1.0);
if (c.r<1.0)
return 1.0-c;
else
{
if (_transparency==1) discard;
return 0;
}
}
ENDCG
}
}
}