Advertisement
Guest User

Untitled

a guest
Aug 10th, 2018
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. class layers
  2. {
  3. class myfirstmap_rock_co
  4. {
  5. texture = #(rgb,1,1,1)color(0.5,0.5,0.5,1,cdt);
  6. material = "myfirstmap\data\myfirstmap_rock.rvmat";
  7. };
  8. class myfirstmap_beach_co
  9. {
  10. texture = #(rgb,1,1,1)color(0.5,0.5,0.5,1,cdt);
  11. material = "myfirstmap\data\myfirstmap_beach.rvmat";
  12. };
  13. class myfirstmap_strconcrete_co
  14. {
  15. texture = #(rgb,1,1,1)color(0.5,0.5,0.5,1,cdt);
  16. material = "myfirstmap\data\myfirstmap_strconcrete.rvmat";
  17. };
  18. class myfirstmap_grass_green_co2
  19. {
  20. texture = #(rgb,1,1,1)color(0.5,0.5,0.5,1,cdt);
  21. material = "myfirstmap\data\myfirstmap_grass_green_co2.rvmat";
  22. };
  23. class myfirstmap_marsh_co
  24. {
  25. texture = #(rgb,1,1,1)color(0.5,0.5,0.5,1,cdt);
  26. material = "myfirstmap\data\myfirstmap_marsh.rvmat";
  27. };
  28. class myfirstmap_seabed_co
  29. {
  30. texture = #(rgb,1,1,1)color(0.5,0.5,0.5,1,cdt);
  31. material = "myfirstmap\data\myfirstmap_seabed.rvmat";
  32. };
  33. class myfirstmap_gravel_co
  34. {
  35. texture = #(rgb,1,1,1)color(0.5,0.5,0.5,1,cdt);
  36. material = "myfirstmap\data\myfirstmap_gravel.rvmat";
  37. };
  38. class myfirstmap_strforest_pine_co
  39. {
  40. texture = #(rgb,1,1,1)color(0.5,0.5,0.5,1,cdt);
  41. material = "myfirstmap\data\myfirstmap_strforest_pine.rvmat";
  42. };
  43. class myfirstmap_mud_co
  44. {
  45. texture = #(rgb,1,1,1)color(0.5,0.5,0.5,1,cdt);
  46. material = "myfirstmap\data\myfirstmap_mud.rvmat";
  47. };
  48. };
  49.  
  50. class legend
  51. {
  52. picture="myfirstmap\source\maplegend.png";
  53. class colors
  54. {
  55. myfirstmap_rock_co[]={{0,0,255}};
  56. myfirstmap_gravel_co[]={{0,110,0}};
  57. myfirstmap_beach_co[]={{255,255,0}};
  58. myfirstmap_strconcrete_co[]={{0,255,255}};
  59. myfirstmap_grass_green_co2[]={{0,255,0}};
  60. myfirstmap_marsh_co[]={{127,0,0}};
  61. myfirstmap_seabed_co[]={{0,0,150}};
  62. myfirstmap_strforest_pine_co[]={{0,100,0}};
  63. myfirstmap_mud_co[]={{110,0,0}};
  64. };
  65. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement