skybox.material 416 B

12345678910111213141516171819
  1. name: "skybox"
  2. tags: "skybox"
  3. vertex_program: "/example/skybox.vp"
  4. fragment_program: "/example/skybox.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. samplers {
  14. name: "cubemap"
  15. wrap_u: WRAP_MODE_CLAMP_TO_EDGE
  16. wrap_v: WRAP_MODE_CLAMP_TO_EDGE
  17. filter_min: FILTER_MODE_MIN_LINEAR
  18. filter_mag: FILTER_MODE_MAG_LINEAR
  19. }