noise.material 408 B

1234567891011121314151617181920212223
  1. name: "noise"
  2. tags: "model"
  3. vertex_program: "/example/noise.vp"
  4. fragment_program: "/example/noise.fp"
  5. vertex_space: VERTEX_SPACE_LOCAL
  6. vertex_constants {
  7. name: "mtx_worldview"
  8. type: CONSTANT_TYPE_WORLDVIEW
  9. }
  10. vertex_constants {
  11. name: "mtx_proj"
  12. type: CONSTANT_TYPE_PROJECTION
  13. }
  14. fragment_constants {
  15. name: "time"
  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. }