unlit.material 594 B

12345678910111213141516171819202122232425262728293031
  1. name: "unlit"
  2. tags: "model"
  3. vertex_program: "/example/unlit.vp"
  4. fragment_program: "/example/unlit.fp"
  5. vertex_space: VERTEX_SPACE_LOCAL
  6. vertex_constants {
  7. name: "mtx_view"
  8. type: CONSTANT_TYPE_VIEW
  9. }
  10. vertex_constants {
  11. name: "mtx_proj"
  12. type: CONSTANT_TYPE_PROJECTION
  13. }
  14. fragment_constants {
  15. name: "tint"
  16. type: CONSTANT_TYPE_USER
  17. value {
  18. x: 1.0
  19. y: 1.0
  20. z: 1.0
  21. w: 1.0
  22. }
  23. }
  24. samplers {
  25. name: "texture0"
  26. wrap_u: WRAP_MODE_CLAMP_TO_EDGE
  27. wrap_v: WRAP_MODE_CLAMP_TO_EDGE
  28. filter_min: FILTER_MODE_MIN_LINEAR
  29. filter_mag: FILTER_MODE_MAG_LINEAR
  30. max_anisotropy: 0.0
  31. }