常量颜色(constantColor)

作者:追风剑情 发布于:2018-12-26 21:00 分类:Shader

示例: 演示constantColor的使用
一个粒子效果Shader
  1. Shader "Custom/ParticlesTest"
  2. {
  3. Properties {
  4. _IlluminCol ("Self-Illumination color (RGB)", Color) = (1,1,1,1)
  5. _MainTex ("Particle Texture", 2D) = "white" {}
  6. _Cutoff ("Base Alpha cutoff", Range (0,.9)) = .5
  7. }
  8.  
  9. Category {
  10. Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" "PreviewType"="Plane" }
  11. //Alpha混合
  12. Blend SrcAlpha OneMinusSrcAlpha
  13. //Alpha测试
  14. AlphaTest GEqual [_Cutoff]
  15. Cull Off Lighting Off ZWrite Off Fog { Color (0,0,0,0) }
  16.  
  17. BindChannels {
  18. Bind "Color", color
  19. Bind "Vertex", vertex
  20. Bind "TexCoord", texcoord
  21. }
  22.  
  23. SubShader {
  24. Pass {
  25. SetTexture [_MainTex] {
  26. constantColor [_IlluminCol]
  27. //combine rgb, alpha
  28. //combine 纹理的rgb与constant的rgb相乘, 纹理的alpha与constant的alpha相乘
  29. combine texture * constant, texture * constant
  30. }
  31. }
  32. }
  33. }
  34. }

效果

3333.png

222.png1.gif

标签: Shader

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号