Scene.material 459 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. // Materials copied from the Ogre3D SDK
  2. // from location Samples/Media/materials/scripts
  3. // fish.mesh
  4. material Examples/Fish
  5. {
  6. technique
  7. {
  8. pass
  9. {
  10. texture_unit
  11. {
  12. texture fish.jpg
  13. }
  14. }
  15. }
  16. }
  17. // ninja.mesh
  18. material Examples/Ninja
  19. {
  20. technique
  21. {
  22. pass
  23. {
  24. texture_unit
  25. {
  26. texture ninja.jpg
  27. }
  28. }
  29. }
  30. }
  31. // razor.mesh
  32. material Material__25
  33. {
  34. technique
  35. {
  36. pass
  37. {
  38. texture_unit
  39. {
  40. texture razor.jpg
  41. }
  42. }
  43. }
  44. }