首先先看下代码内容:

    1. Shader "WSP/FrameWork7"
    2. {
    3. Properties
    4. {
    5. _Tex("角色贴图",2D) = "White" {}
    6. _Color("被击中颜色",Color) = (0,0,0,0)
    7. }
    8. SubShader
    9. {
    10. pass
    11. {
    12. CGPROGRAM
    13. #pragma vertex vert
    14. #pragma fragment frag
    15. #include "UnityCG.cginc"
    16. sampler2D _Tex;
    17. fixed4 _Color;
    18. struct appdata
    19. {
    20. float4 vertex :POSITION;
    21. float4 uv :TEXCOORD;
    22. };
    23. struct v2f
    24. {
    25. float4 pos :POSITION;
    26. float4 uv :TEXCOORD;
    27. };
    28. v2f vert(appdata v)
    29. {
    30. v2f o;
    31. o.pos = UnityObjectToClipPos(v.vertex);
    32. o.uv = v.uv;
    33. return o;
    34. }
    35. fixed4 frag(v2f i):SV_TARGET
    36. {
    37. fixed4 c;
    38. fixed4 tex = tex2D(_Tex,i.uv);
    39. c = tex;
    40. c += _Color;
    41. return c;
    42. }
    43. ENDCG
    44. }
    45. }
    46. }


    {
    fixed4 c;
    fixed4 tex = tex2D(_Tex,i.uv);
    c = tex;
    c += _Color;
    return c;
    }

    结论:
    1.“=”就是基本运算符,比如还有“+=”。”c += _Color;” = “c = c + _Color”
    2.“=”就是赋值属性。 fixed4 tex = tex2D(_Tex,i.uv); 就是把 等于号后面的值“tex2D(_Tex,i.uv);”赋予给等于号前面的变量fixed4 tex。
    3.“c = tex;”就是一个引用的转换关系。把变量tex的值转换给c。那么就会有问题要问了:岂不是 “c = tex2D(_Tex,i.uv) = tex” ?
    fixed4 tex = tex2D(_Tex,i.uv);
    c = tex2D(_Tex,i.uv);
    但是这样会使片断着色器进行两次贴图采样,前面笔记有提到过多次片断着色器的贴图采样会造成极大的运算性能浪费。
    回顾纹理采样三步骤:
    1. _Name(“Display”,2D) = “White” {} “属性定义”
    2. Sampler _Name; “CG中声明”
    3. tex2D(_Name,uv); “着色器中采样”
    因此通过引用的方式获得需要存储的变量”c”
    4.”+=” “-=” “*=”等都属于简写的赋值/基本运算符。