码迷,mamicode.com
首页 > 编程语言 > 详细

【日常记录】Unity3D 中的 Surface Shader 是不支持在 Pass中使用的

时间:2017-07-30 11:26:03      阅读:1083      评论:0      收藏:0      [点我收藏+]

标签:inpu   日常   erro   blog   amp   text   custom   style   color   

如题

搞了好久,一直报错:

Shader error in ‘custom_outline_effect‘: Parse error: syntax error, unexpected TOK_PASS, expecting TOK_SETTEXTURE or ‘}‘ at line 69

只要是把 #pragma surface ... 写在 Pass中就算出错

 1         Pass { // Pass 中无法使用 surface 渲染模式,也就是说surface不支持在多Pass中使用
 2                 CGPROGRAM
 3                     #pragma surface surf Lambert
 4 
 5                     sampler2D _MainTex;
 6 
 7                     struct Input {
 8                         float2 uv_MainTex;
 9                     };
10 
11                     void surf (Input IN, inout SurfaceOutput o) {
12                         half4 c = tex2D (_MainTex, IN.uv_MainTex);
13                         o.Albedo = c.rgb;
14                         o.Alpha = c.a;
15                     }
16                  ENDCG
17         }

 

【日常记录】Unity3D 中的 Surface Shader 是不支持在 Pass中使用的

标签:inpu   日常   erro   blog   amp   text   custom   style   color   

原文地址:http://www.cnblogs.com/night-ride-depart/p/7258307.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!