unlit.material 540 B

12345678910111213141516171819202122232425
  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_world"
  8. type: CONSTANT_TYPE_WORLD
  9. }
  10. vertex_constants {
  11. name: "mtx_view"
  12. type: CONSTANT_TYPE_VIEW
  13. }
  14. vertex_constants {
  15. name: "mtx_proj"
  16. type: CONSTANT_TYPE_PROJECTION
  17. }
  18. samplers {
  19. name: "texture0"
  20. wrap_u: WRAP_MODE_CLAMP_TO_EDGE
  21. wrap_v: WRAP_MODE_CLAMP_TO_EDGE
  22. filter_min: FILTER_MODE_MIN_LINEAR
  23. filter_mag: FILTER_MODE_MAG_LINEAR
  24. max_anisotropy: 0.0
  25. }