This commit is contained in:
2016-05-18 20:02:15 +02:00
parent 62c8cf021f
commit 1e9b3a1498
225 changed files with 111146 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
Shader "Custom/SteamVR_HiddenArea" {
CGINCLUDE
#include "UnityCG.cginc"
float4 vert(appdata_base v) : SV_POSITION { return v.vertex; }
float4 frag(float4 v : SV_POSITION) : COLOR { return float4(0,0,0,0); }
ENDCG
SubShader {
Tags { "Queue" = "Background" }
Pass {
ZTest Always Cull Off ZWrite On
Fog { Mode Off }
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
ENDCG
}
}
}