小松教你手游开发游戏渲染单色shader,纹理shader

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小松教你手游开发游戏渲染单色shader,纹理shader相关的知识,希望对你有一定的参考价值。

单色shader

Shader "ChrisShader/OneColorShader"
{  
    Properties 
        {  
        _Color ("color", Color) = (0,0,0,0)  
    }  
    SubShader
        {  
        Pass  
        {  
            Color[_Color]  
        }  
    }   
}  

纹理shader

Properties {  
        _MainTex ("Base (RGB)", 2D) = "white" {}  
    }  
    SubShader {  

        Pass  
        {  
            SetTexture[_MainTex]{combine texture}  
        }  
    }   
    FallBack "Diffuse"  
}  

以上是关于小松教你手游开发游戏渲染单色shader,纹理shader的主要内容,如果未能解决你的问题,请参考以下文章

小松教你手游开发unity系统模块开发unity网络层读写

小松教你手游开发unity实用技能unity发包优化(android一键发包)

小松教你手游开发unity实用技能给每个GameObject的打开关闭加上一个渐变

小松教你手游开发unity实用技能计算目标物体是否在自己的扇形视野范围

小松教你手游开发unity系统模块开发Unity5.5.2UI打包AssetBundle

小松教你手游开发unity实用技能控制摄像头脚本