Simple map Display Shander

Source: Internet
Author: User

Shader"Ztq/Diffuse"{
Properties{
_color ("MainColor",Color) = (1,1,1,1)Main material Color
_maintex ("Base(Rgb)",The) ="White"{}Main material
}
Subshader{
Pass
{
Tags
{
"Lightmode"="Forwardbase"
}

Cgprogram
#include"Unitycg.Cginc"Referencing libraries
#pragmaVertexVert//Specify vertexShader function
#pragmaFragment Frag//Specify fragmentShader function

UniformSampler2d_maintex;
UniformFixed4_color;

structv2fDeclare vertex fragment to pixel fragment function
{
Half4Pos:sv_position;storing vertex coordinate information
Half2Uv:TEXCOORD0;Storing UV information for the main material
};

v2f Vert (Appdata_full v)Vertex fragment
{
v2f o;Create O
O.pos =Mul(UNITY_MATRIX_MVP, v.Vertex);Convert object coordinates to screen coordinates
O.uv = v.Texcoord. XY;Map Uvs
ReturnOReturn o
}

Fixed4Frag (v2f i):COLOR
{
Fixed4Diffsamplercolor =tex2d(_maintex, I.uv.xy);Map sampling
return fixed4(Diffsamplercolor*_color); //Return color
}
ENDCG
}
}
}


Simple map Display Shander

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.