ColorMaterial

作者:追风剑情 发布于:2014-7-17 0:54 分类:Shader

使用顶点色

ColorMaterial也可以配合Emission,从而使用顶点色作为自发光的色彩。

  1. Shader "Custom/ColorMaterial" {
  2. Properties {
  3. _Color ("Main Color", Color) = (1, 1, 1, 1)
  4. }
  5. SubShader {
  6. Tags { "RenderType"="Opaque" }
  7. LOD 200
  8. Pass {
  9. //使用顶点色代替Material块中的漫反射和环境色
  10. ColorMaterial AmbientAndDiffuse
  11. Material {
  12. Ambient [_Color]
  13. Diffuse [_Color]
  14. }
  15. Lighting On
  16. SetTexture [_] {
  17. constantColor [_Color]
  18. combine primary * constant double
  19. }
  20. }
  21. }
  22. FallBack "Diffuse"
  23. }

运行效果

顶点色运行效果.png

标签: ColorMaterial

« Attribute | Ping»
Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号