builtin-unlit.effect 577 B

12345678910111213141516171819202122232425262728293031323334
  1. // Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
  2. %{
  3. techniques: [
  4. {
  5. passes: [
  6. {
  7. vert: unlit-vs
  8. frag: unlit-fs
  9. cullMode: none
  10. depthTest: true
  11. depthWrite: true
  12. blend: true
  13. }
  14. ]
  15. layer: 0
  16. }
  17. ]
  18. properties: {
  19. diffuseTexture: {
  20. type: sampler2D
  21. value: null
  22. }
  23. diffuseColor: {
  24. type: color4
  25. value: [1, 1, 1, 1]
  26. }
  27. alphaThreshold: {
  28. type: number
  29. value: 0.5
  30. }
  31. }
  32. %}