You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 rivejä
751 B

  1. material textured
  2. {
  3. u_worldViewProjectionMatrix = WORLD_VIEW_PROJECTION_MATRIX
  4. sampler u_diffuseTexture
  5. {
  6. mipmap = true
  7. wrapS = CLAMP
  8. wrapT = CLAMP
  9. minFilter = LINEAR_MIPMAP_LINEAR
  10. magFilter = LINEAR
  11. }
  12. renderState
  13. {
  14. cullFace = true
  15. depthTest = true
  16. }
  17. technique
  18. {
  19. pass
  20. {
  21. vertexShader = res/shaders/textured.vert
  22. fragmentShader = res/shaders/textured.frag
  23. }
  24. }
  25. }
  26. material lambert2 : textured
  27. {
  28. u_inverseTransposeWorldViewMatrix = INVERSE_TRANSPOSE_WORLD_VIEW_MATRIX
  29. sampler u_diffuseTexture
  30. {
  31. path = zuobiaozhou.png
  32. wrapS = REPEAT
  33. wrapT = REPEAT
  34. }
  35. }