动态更改Shader属性值

作者:追风剑情 发布于:2016-2-15 17:36 分类:Shader

一、创建脚本

  1. using UnityEngine;
  2. using System.Collections;
  3.  
  4. public class ProceduralMaterialTest : MonoBehaviour {
  5.  
  6. public Color mainColor;
  7.  
  8. void Start ()
  9. {
  10. renderer.materials[0].SetColor("_MainColor", mainColor);
  11. }
  12. }

二、创建Shader

  1. Shader "Custom/CubeShader" {
  2. Properties {
  3. _MainColor ("Main Color", Color) = (1, 1, 1, 1)
  4. _MainTex ("Base (RGB)", 2D) = "white" {}
  5. }
  6. SubShader {
  7. Tags { "RenderType"="Opaque" }
  8. LOD 200
  9. CGPROGRAM
  10. #pragma surface surf Lambert
  11.  
  12. float4 _MainColor;
  13. sampler2D _MainTex;
  14.  
  15. struct Input {
  16. float2 uv_MainTex;
  17. };
  18.  
  19. void surf (Input IN, inout SurfaceOutput o) {
  20. half4 c = tex2D (_MainTex, IN.uv_MainTex);
  21. o.Albedo = _MainColor.rgb;
  22. o.Alpha = c.a;
  23. }
  24. ENDCG
  25. }
  26. FallBack "Diffuse"
  27. }

三、工程截图

111.png

2222.png


四、运行效果

3333.png

标签: Shader

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号