VR模拟枪支打靶,消灭鬼怪,换弹以及上弦等等硬核枪支操作。 使用HTCVive设备,开启SteamVR进行游玩。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

58 lines
990 B

Shader "Hidden/MotionBlurClear"
{
Properties { }
SubShader {
Pass {
//ZTest LEqual
ZTest Always // lame depth test
ZWrite Off // lame depth test
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
#include "UnityCG.cginc"
struct vs_input {
float4 vertex : POSITION;
};
struct ps_input {
float4 pos : SV_POSITION;
float4 screen : TEXCOORD0;
};
sampler2D_float _CameraDepthTexture;
ps_input vert (vs_input v)
{
ps_input o;
o.pos = UnityObjectToClipPos(v.vertex);
o.screen = ComputeScreenPos(o.pos);
COMPUTE_EYEDEPTH(o.screen.z);
return o;
}
float4 frag (ps_input i) : SV_Target
{
// superlame: manual depth test needed as we can't bind depth, FIXME for 4.x
// alternatively implement SM > 3 version where we write out custom depth
float d = SAMPLE_DEPTH_TEXTURE_PROJ(_CameraDepthTexture, UNITY_PROJ_COORD(i.screen));
d = LinearEyeDepth(d);
clip(d - i.screen.z + 1e-2f);
return float4(0, 0, 0, 0);
}
ENDCG
}
}
Fallback Off
}