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.
 
 
 
 
 

33 lines
714 B

Shader "CGwell FX/Dissolve Simple" {
Properties {
_Color ("Main Color", Color) = (1,1,1,1)
_MainTex ("Base (RGB)", 2D) = "white" {}
_DissolveTex ("Dissolve (R)", 2D) = "white" {}
}
SubShader {
Tags {"IgnoreProjector"="True" "RenderType"="TransparentCutout"}
LOD 300
CGPROGRAM
#pragma surface surf Lambert alphatest:Zero
sampler2D _MainTex;
sampler2D _DissolveTex;
float4 _Color;
struct Input {
float2 uv_MainTex;
float2 uv_DissolveTex;
};
void surf (Input IN, inout SurfaceOutput o) {
half4 tex = tex2D(_MainTex, IN.uv_MainTex);
half4 texd = tex2D(_DissolveTex, IN.uv_DissolveTex);
o.Albedo = tex.rgb * _Color.rgb;
o.Alpha = _Color.a - texd.r;
}
ENDCG
}
Fallback "Transparent/Cutout/VertexLit"
}