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.

137 lines
8.5 KiB

  1. // Made with Amplify Shader Editor
  2. // Available at the Unity Asset Store - http://u3d.as/y3X
  3. Shader "ASESampleShaders/Dithering Fade Blue Noise"
  4. {
  5. Properties
  6. {
  7. _Cutoff( "Mask Clip Value", Float ) = 0.74
  8. _Albedo("Albedo", 2D) = "white" {}
  9. [NoScaleOffset]_Normal("Normal", 2D) = "bump" {}
  10. [NoScaleOffset]_Specular("Specular", 2D) = "white" {}
  11. [NoScaleOffset]_Occlusion("Occlusion", 2D) = "white" {}
  12. [NoScaleOffset]_BlueNoise("Blue Noise", 2D) = "white" {}
  13. _StartDitheringFade("Start Dithering Fade", Float) = 0
  14. _EndDitheringFade("End Dithering Fade", Float) = 1
  15. [HideInInspector] _texcoord( "", 2D ) = "white" {}
  16. [HideInInspector] __dirty( "", Int ) = 1
  17. }
  18. SubShader
  19. {
  20. Tags{ "RenderType" = "TransparentCutout" "Queue" = "AlphaTest+0" }
  21. Cull Back
  22. CGPROGRAM
  23. #include "UnityShaderVariables.cginc"
  24. #pragma target 3.0
  25. #pragma surface surf StandardSpecular keepalpha addshadow fullforwardshadows vertex:vertexDataFunc
  26. struct Input
  27. {
  28. fixed2 uv_texcoord;
  29. fixed eyeDepth;
  30. fixed4 screenPosition;
  31. };
  32. uniform sampler2D _Normal;
  33. uniform sampler2D _Albedo;
  34. uniform float4 _Albedo_ST;
  35. uniform sampler2D _Specular;
  36. uniform sampler2D _Occlusion;
  37. uniform fixed _StartDitheringFade;
  38. uniform fixed _EndDitheringFade;
  39. uniform sampler2D _BlueNoise;
  40. uniform float4 _BlueNoise_TexelSize;
  41. uniform float _Cutoff = 0.74;
  42. inline float DitherNoiseTex( float4 screenPos, sampler2D noiseTexture, float4 noiseTexelSize )
  43. {
  44. float dither = tex2Dlod( noiseTexture, float4( screenPos.xy * _ScreenParams.xy * noiseTexelSize.xy, 0, 0 ) ).g;
  45. float ditherRate = noiseTexelSize.x * noiseTexelSize.y;
  46. dither = ( 1 - ditherRate ) * dither + ditherRate;
  47. return dither;
  48. }
  49. void vertexDataFunc( inout appdata_full v, out Input o )
  50. {
  51. UNITY_INITIALIZE_OUTPUT( Input, o );
  52. o.eyeDepth = -UnityObjectToViewPos( v.vertex.xyz ).z;
  53. float4 ase_screenPos = ComputeScreenPos( UnityObjectToClipPos( v.vertex ) );
  54. o.screenPosition = ase_screenPos;
  55. }
  56. void surf( Input i , inout SurfaceOutputStandardSpecular o )
  57. {
  58. float2 uv_Albedo = i.uv_texcoord * _Albedo_ST.xy + _Albedo_ST.zw;
  59. o.Normal = UnpackNormal( tex2D( _Normal, uv_Albedo ) );
  60. o.Albedo = tex2D( _Albedo, uv_Albedo ).rgb;
  61. o.Specular = tex2D( _Specular, uv_Albedo ).rgb;
  62. o.Occlusion = tex2D( _Occlusion, uv_Albedo ).r;
  63. o.Alpha = 1;
  64. float temp_output_65_0 = ( _StartDitheringFade + _ProjectionParams.y );
  65. float4 ase_screenPos = i.screenPosition;
  66. float4 ase_screenPosNorm = ase_screenPos / ase_screenPos.w;
  67. ase_screenPosNorm.z = ( UNITY_NEAR_CLIP_VALUE >= 0 ) ? ase_screenPosNorm.z : ase_screenPosNorm.z * 0.5 + 0.5;
  68. float dither26 = DitherNoiseTex( ase_screenPosNorm, _BlueNoise, _BlueNoise_TexelSize);
  69. clip( ( ( ( i.eyeDepth + -temp_output_65_0 ) / ( _EndDitheringFade - temp_output_65_0 ) ) - dither26 ) - _Cutoff );
  70. }
  71. ENDCG
  72. }
  73. Fallback "Diffuse"
  74. CustomEditor "ASEMaterialInspector"
  75. }
  76. /*ASEBEGIN
  77. Version=15205
  78. 1927;-166;1066;709;103.1421;-95.306;1;True;False
  79. Node;AmplifyShaderEditor.CommentaryNode;36;-622.9761,91.39496;Float;False;1047.541;403.52;Scale depth from start to end;8;30;65;28;29;34;31;33;15;;1,1,1,1;0;0
  80. Node;AmplifyShaderEditor.CommentaryNode;37;-609.7847,546.5101;Float;False;297.1897;243;Correction for near plane clipping;1;19;;1,1,1,1;0;0
  81. Node;AmplifyShaderEditor.ProjectionParams;19;-537.0848,595.81;Float;False;0;5;FLOAT4;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  82. Node;AmplifyShaderEditor.RangedFloatNode;30;-584.0002,374.09;Float;False;Property;_StartDitheringFade;Start Dithering Fade;6;0;Create;True;0;0;False;0;0;0;0;0;0;1;FLOAT;0
  83. Node;AmplifyShaderEditor.SimpleAddOpNode;65;-298.5083,377.6221;Float;False;2;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
  84. Node;AmplifyShaderEditor.RangedFloatNode;31;-117.5356,335.0947;Float;False;Property;_EndDitheringFade;End Dithering Fade;7;0;Create;True;0;0;False;0;1;0;0;0;0;1;FLOAT;0
  85. Node;AmplifyShaderEditor.SurfaceDepthNode;15;-557.4172,189.5072;Float;False;0;1;0;FLOAT3;0,0,0;False;1;FLOAT;0
  86. Node;AmplifyShaderEditor.NegateNode;33;-107.1209,253.7414;Float;False;1;0;FLOAT;0;False;1;FLOAT;0
  87. Node;AmplifyShaderEditor.SimpleAddOpNode;28;101.9639,194.1952;Float;False;2;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
  88. Node;AmplifyShaderEditor.SimpleSubtractOpNode;29;99.26421,348.9946;Float;False;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
  89. Node;AmplifyShaderEditor.TextureCoordinatesNode;47;-62.14664,-384.9758;Float;False;0;44;2;3;2;SAMPLER2D;;False;0;FLOAT2;1,1;False;1;FLOAT2;0,0;False;5;FLOAT2;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  90. Node;AmplifyShaderEditor.TexturePropertyNode;68;192,512;Float;True;Property;_BlueNoise;Blue Noise;5;1;[NoScaleOffset];Create;True;0;0;False;0;None;None;False;white;Auto;0;1;SAMPLER2D;0
  91. Node;AmplifyShaderEditor.SamplerNode;44;384,-688;Float;True;Property;_Albedo;Albedo;1;0;Create;True;0;0;False;0;None;None;True;0;False;white;Auto;False;Object;-1;Auto;Texture2D;6;0;SAMPLER2D;0,0;False;1;FLOAT2;1,0;False;2;FLOAT;1;False;3;FLOAT2;0,0;False;4;FLOAT2;0,0;False;5;FLOAT;1;False;5;COLOR;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  92. Node;AmplifyShaderEditor.DitheringNode;26;464,512;Float;False;2;2;0;FLOAT;0;False;1;SAMPLER2D;;False;1;FLOAT;0
  93. Node;AmplifyShaderEditor.SimpleDivideOpNode;34;285.764,250.6948;Float;False;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
  94. Node;AmplifyShaderEditor.SamplerNode;45;384,-496;Float;True;Property;_Normal;Normal;2;1;[NoScaleOffset];Create;True;0;0;False;0;None;None;True;0;True;bump;Auto;True;Object;-1;Auto;Texture2D;6;0;SAMPLER2D;0,0;False;1;FLOAT2;1,0;False;2;FLOAT;1;False;3;FLOAT2;0,0;False;4;FLOAT2;0,0;False;5;FLOAT;1;False;5;FLOAT3;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  95. Node;AmplifyShaderEditor.SamplerNode;48;384,-112;Float;True;Property;_Occlusion;Occlusion;4;1;[NoScaleOffset];Create;True;0;0;False;0;None;None;True;0;False;white;Auto;False;Object;-1;Auto;Texture2D;6;0;SAMPLER2D;0,0;False;1;FLOAT2;1,0;False;2;FLOAT;1;False;3;FLOAT2;0,0;False;4;FLOAT2;0,0;False;5;FLOAT;1;False;5;COLOR;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  96. Node;AmplifyShaderEditor.SamplerNode;46;384,-304;Float;True;Property;_Specular;Specular;3;1;[NoScaleOffset];Create;True;0;0;False;0;None;None;True;0;False;white;Auto;False;Object;-1;Auto;Texture2D;6;0;SAMPLER2D;0,0;False;1;FLOAT2;1,0;False;2;FLOAT;1;False;3;FLOAT2;0,0;False;4;FLOAT2;0,0;False;5;FLOAT;1;False;5;COLOR;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  97. Node;AmplifyShaderEditor.WireNode;49;847.9045,48.44281;Float;False;1;0;FLOAT;0;False;1;FLOAT;0
  98. Node;AmplifyShaderEditor.SimpleSubtractOpNode;27;736,256;Float;False;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
  99. Node;AmplifyShaderEditor.WireNode;67;852.93,-28.48083;Float;False;1;0;COLOR;0,0,0,0;False;1;COLOR;0
  100. Node;AmplifyShaderEditor.WireNode;51;857.5114,-90.67801;Float;False;1;0;FLOAT3;0,0,0;False;1;FLOAT3;0
  101. Node;AmplifyShaderEditor.WireNode;52;867.2929,-172.9061;Float;False;1;0;COLOR;0,0,0,0;False;1;COLOR;0
  102. Node;AmplifyShaderEditor.StandardSurfaceOutputNode;0;999.2003,-69.70003;Fixed;False;True;2;Fixed;ASEMaterialInspector;0;0;StandardSpecular;ASESampleShaders/Dithering Fade Blue Noise;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;Back;0;False;-1;3;False;-1;False;0;0;False;0;Masked;0.74;True;True;0;False;TransparentCutout;;AlphaTest;All;True;True;True;True;True;True;True;True;True;True;True;True;True;True;True;True;True;0;False;-1;False;0;False;-1;255;False;-1;255;False;-1;0;False;-1;0;False;-1;0;False;-1;0;False;-1;0;False;-1;0;False;-1;0;False;-1;0;False;-1;False;0;4;10;25;False;0.5;True;0;0;False;-1;0;False;-1;0;0;False;-1;0;False;-1;-1;False;-1;-1;False;-1;0;False;0;0,0,0,0;VertexOffset;True;False;Cylindrical;False;Relative;0;;0;-1;-1;-1;0;0;0;False;0;0;0;False;-1;-1;0;False;-1;16;0;FLOAT3;0,0,0;False;1;FLOAT3;0,0,0;False;2;FLOAT3;0,0,0;False;3;FLOAT3;0,0,0;False;4;FLOAT;0;False;5;FLOAT;0;False;6;FLOAT3;0,0,0;False;7;FLOAT3;0,0,0;False;8;FLOAT;0;False;9;FLOAT;0;False;10;FLOAT;0;False;13;FLOAT3;0,0,0;False;11;FLOAT3;0,0,0;False;12;FLOAT3;0,0,0;False;14;FLOAT4;0,0,0,0;False;15;FLOAT3;0,0,0;False;0
  103. WireConnection;65;0;30;0
  104. WireConnection;65;1;19;2
  105. WireConnection;33;0;65;0
  106. WireConnection;28;0;15;0
  107. WireConnection;28;1;33;0
  108. WireConnection;29;0;31;0
  109. WireConnection;29;1;65;0
  110. WireConnection;44;1;47;0
  111. WireConnection;26;1;68;0
  112. WireConnection;34;0;28;0
  113. WireConnection;34;1;29;0
  114. WireConnection;45;1;47;0
  115. WireConnection;48;1;47;0
  116. WireConnection;46;1;47;0
  117. WireConnection;49;0;48;1
  118. WireConnection;27;0;34;0
  119. WireConnection;27;1;26;0
  120. WireConnection;67;0;46;0
  121. WireConnection;51;0;45;0
  122. WireConnection;52;0;44;0
  123. WireConnection;0;0;52;0
  124. WireConnection;0;1;51;0
  125. WireConnection;0;3;67;0
  126. WireConnection;0;5;49;0
  127. WireConnection;0;10;27;0
  128. ASEEND*/
  129. //CHKSM=FD086D3E36F12FB9752D54D95B116B8E0A8C26A4