exclude_path:prepass

作者:追风剑情 发布于:2014-7-24 20:59 分类:Shader

  1. Shader "Custom/ExcludePathPrepass" {
  2. Properties {
  3. _MainTex ("Base (RGB)", 2D) = "white" {}
  4. }
  5. SubShader {
  6. Tags { "RenderType"="Opaque" }
  7. LOD 200
  8. CGPROGRAM
  9. //exclude_path:prepass参数告诉Unity不要为Deferred渲染路径产生Shader
  10. #pragma surface surf Lambert exclude_path:prepass
  11. #pragma debug
  12. sampler2D _MainTex;
  13.  
  14. struct Input {
  15. float2 uv_MainTex;
  16. };
  17.  
  18. void surf (Input IN, inout SurfaceOutput o) {
  19. half4 c = tex2D (_MainTex, IN.uv_MainTex);
  20. o.Albedo = c.rgb;
  21. o.Alpha = c.a;
  22. }
  23. ENDCG
  24. }
  25. FallBack Off
  26. }

以上Shader只在Forward模式下执行

标签: Shader

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号