Version 17.5

This commit is contained in:
Mediha Zukic
2017-05-17 12:25:25 +03:00
parent 56473639f3
commit 16ee526661
2000 changed files with 177858 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
//======= Copyright (c) Valve Corporation, All rights reserved. ===============
// UNITY_SHADER_NO_UPGRADE
Shader "Custom/SteamVR_Fade"
{
SubShader
{
Pass
{
Blend SrcAlpha OneMinusSrcAlpha
ZTest Always
Cull Off
ZWrite Off
CGPROGRAM
#pragma vertex MainVS
#pragma fragment MainPS
float4 fadeColor;
float4 MainVS( float4 vertex : POSITION ) : SV_POSITION
{
return vertex.xyzw;
}
float4 MainPS() : SV_Target
{
return fadeColor.rgba;
}
ENDCG
}
}
}