cubemap_model.material 522 B

12345678910111213141516171819202122232425
  1. name: "cubemap_model"
  2. tags: "model"
  3. vertex_program: "/example/cubemap_model.vp"
  4. fragment_program: "/example/cubemap_model.fp"
  5. vertex_constants {
  6. name: "view_proj"
  7. type: CONSTANT_TYPE_VIEWPROJ
  8. }
  9. vertex_constants {
  10. name: "world"
  11. type: CONSTANT_TYPE_WORLD
  12. }
  13. vertex_constants {
  14. name: "cameraPosition"
  15. type: CONSTANT_TYPE_USER
  16. value {
  17. }
  18. }
  19. samplers {
  20. name: "envMap"
  21. wrap_u: WRAP_MODE_CLAMP_TO_EDGE
  22. wrap_v: WRAP_MODE_CLAMP_TO_EDGE
  23. filter_min: FILTER_MODE_MIN_LINEAR
  24. filter_mag: FILTER_MODE_MAG_LINEAR
  25. }