5a570b2e52
Ring lights TBA
91 lines
2.3 KiB
GLSL
91 lines
2.3 KiB
GLSL
Shader "Hidden/LIV_ClipPlaneComplex"
|
|
{
|
|
Properties{
|
|
_LivClipPlaneHeightMap("Clip Plane Height Map", 2D) = "black" {}
|
|
}
|
|
|
|
SubShader
|
|
{
|
|
Tags { "Queue" = "Overlay" "LightMode" = "Always" "IgnoreProjector" = "True" "ForceNoShadowCasting" = "True"}
|
|
|
|
Pass {
|
|
Name "CLIP_PLANE_COMPLEX"
|
|
Cull Off
|
|
ZWrite On
|
|
Blend Off
|
|
Fog{ Mode Off }
|
|
ColorMask[_LivColorMask]
|
|
|
|
CGPROGRAM
|
|
|
|
#pragma target 4.6
|
|
|
|
#pragma vertex TessellationVertexProgram
|
|
#pragma fragment FragmentProgram
|
|
#pragma hull HullProgram
|
|
#pragma domain DomainProgram
|
|
|
|
#include "UnityCG.cginc"
|
|
|
|
sampler2D _LivClipPlaneHeightMap;
|
|
float _LivTessellation;
|
|
|
|
struct VertexData {
|
|
float4 vertex : POSITION;
|
|
float2 uv : TEXCOORD0;
|
|
};
|
|
|
|
struct TessellationFactors {
|
|
float edge[4] : SV_TessFactor;
|
|
float inside[2] : SV_InsideTessFactor;
|
|
};
|
|
|
|
struct TessellationControlPoint {
|
|
float4 vertex : INTERNALTESSPOS;
|
|
float2 uv : TEXCOORD0;
|
|
};
|
|
|
|
[domain("quad")]
|
|
[outputcontrolpoints(4)]
|
|
[outputtopology("triangle_cw")]
|
|
[partitioning("fractional_odd")]
|
|
[patchconstantfunc("PatchConstantFunction")]
|
|
TessellationControlPoint HullProgram(InputPatch<TessellationControlPoint, 4> patch, uint id : SV_OutputControlPointID) {
|
|
return patch[id];
|
|
}
|
|
|
|
TessellationFactors PatchConstantFunction(InputPatch<TessellationControlPoint, 4> patch) {
|
|
TessellationFactors f;
|
|
float t = _LivTessellation;
|
|
f.edge[0] = f.edge[1] = f.edge[2] = f.edge[3] = f.inside[0] = f.inside[1] = t;
|
|
return f;
|
|
}
|
|
|
|
[domain("quad")]
|
|
VertexData DomainProgram(TessellationFactors factors, OutputPatch<TessellationControlPoint, 4> patch, float2 uv : SV_DomainLocation) {
|
|
VertexData data;
|
|
|
|
data.uv = lerp(lerp(patch[0].uv, patch[1].uv, uv.x), lerp(patch[3].uv, patch[2].uv, uv.x), uv.y);
|
|
float4 vertex = lerp(lerp(patch[0].vertex, patch[1].vertex, uv.x), lerp(patch[3].vertex, patch[2].vertex, uv.x), uv.y);
|
|
vertex.z += tex2Dlod(_LivClipPlaneHeightMap, float4(data.uv, 0, 0)).r;
|
|
data.vertex = UnityObjectToClipPos(vertex);
|
|
|
|
return data;
|
|
}
|
|
|
|
TessellationControlPoint TessellationVertexProgram(VertexData v) {
|
|
TessellationControlPoint p;
|
|
p.vertex = v.vertex;
|
|
p.uv = v.uv;
|
|
return p;
|
|
}
|
|
|
|
fixed4 FragmentProgram(TessellationControlPoint i) : SV_Target{
|
|
return fixed4(0, 0, 0, 0);
|
|
}
|
|
|
|
ENDCG
|
|
}
|
|
}
|
|
}
|