builtin-unlit-transparent.effect 711 B

123456789101112131415161718192021222324252627282930313233343536
  1. // Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
  2. %{
  3. techniques: [
  4. {
  5. stages: [ 'transparent' ]
  6. passes: [
  7. {
  8. vert: unlit-vs
  9. frag: unlit-fs
  10. depthTest: true
  11. depthWrite: false
  12. blend: true
  13. blendEq: add
  14. blendSrc: srcAlpha
  15. blendDst: oneMinusSrcAlpha
  16. blendAlphaEq: add
  17. blendSrcAlpha: one
  18. blendDstAlpha: oneMinusSrcAlpha
  19. }
  20. ]
  21. layer: 0
  22. }
  23. ]
  24. properties: {
  25. diffuseTexture: {
  26. type: sampler2D
  27. value: null
  28. }
  29. diffuseColor: {
  30. type: color4
  31. value: [1, 1, 1, 1]
  32. }
  33. }
  34. %}