码迷,mamicode.com
首页 > 其他好文 > 详细

[原]unity3d GLSL无法pc上显示

时间:2014-09-12 11:48:03      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   2014   sp   

pc编写GLSL:

Shader "Custom/GLSL" {
    Properties {
        _MainTex ("Base (RGB)", 2D) = "white" {}
    }
    SubShader {
        Tags { "RenderType"="Opaque" }
        LOD 200
        pass{
            GLSLPROGRAM
            
                #ifdef VERTEX
                void main()
                {
                    gl_Position = gl_ModelViewProjectionMatrix*gl_Vertex;
                }
                #endif
                
                #ifdef FRAGMENT
                void main()
                {
                    gl_FragColor = vec4(1,0,0,0);
                }
                #endif
                
            ENDGLSL
        }
    }
}

出现:shader has error or is not supported by your graphics card

bubuko.com,布布扣

需要通过这样的设置:(设置完后需要重启unity

bubuko.com,布布扣

 

 

重启后的效果:

bubuko.com,布布扣

 

[原]unity3d GLSL无法pc上显示

标签:style   blog   http   color   io   os   ar   2014   sp   

原文地址:http://www.cnblogs.com/U-tansuo/p/unity_GLSL.html

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