Advertisement
Walkero0

layers.cfg

Oct 29th, 2022
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.51 KB | None | 0 0
  1. class Layers
  2. {
  3. class wlk_snow {
  4. texture = "";
  5. material = "wlk_lokino\data\wlk_snow.rvmat";
  6. };
  7. class wlk_slope {
  8. texture = "";
  9. material = "wlk_lokino\data\wlk_slope.rvmat";
  10. };
  11. class wlk_forest {
  12. texture = "";
  13. material = "wlk_lokino\data\wlk_forest.rvmat";
  14. };
  15. class wlk_sand {
  16. texture = "";
  17. material = "wlk_lokino\data\wlk_sand.rvmat";
  18. };
  19. class wlk_seafloor {
  20. texture = "";
  21. material = "wlk_lokino\data\wlk_seafloor.rvmat";
  22. };
  23. class wlk_grass {
  24. texture = "";
  25. material = "wlk_lokino\data\wlk_grass.rvmat";
  26. };
  27. class wlk_rasen {
  28. texture = "";
  29. material = "wlk_lokino\data\wlk_rasen.rvmat";
  30. };
  31. class wlk_asphalt {
  32. texture = "";
  33. material = "wlk_lokino\data\wlk_asphalt.rvmat";
  34. };
  35. class wlk_gravel {
  36. texture = "";
  37. material = "wlk_lokino\data\wlk_gravel.rvmat";
  38. };
  39. class wlk_mud {
  40. texture = "";
  41. material = "wlk_lokino\data\wlk_mud.rvmat";
  42. };
  43. class wlk_dirt {
  44. texture = "";
  45. material = "wlk_lokino\data\wlk_dirt.rvmat";
  46. };
  47. class wlk_field_corn {
  48. texture = "";
  49. material = "wlk_lokino\data\wlk_field_dirt.rvmat";
  50. };
  51. class wlk_feld {
  52. texture = "";
  53. material = "wlk_lokino\data\wlk_feld_dirt.rvmat";
  54. };
  55. class wlk_concrete_dirt {
  56. texture = "";
  57. material = "wlk_lokino\data\wlk_concrete_dirt.rvmat";
  58. };
  59. class wlk_feld_wheat {
  60. texture = "";
  61. material = "wlk_lokino\data\wlk_wheat_mat.rvmat";
  62. };
  63. class wlk_feld_pebbles {
  64. texture = "";
  65. material = "wlk_lokino\data\wlk_pebbles_mat.rvmat";
  66. };
  67. class wlk_airport_ground {
  68. texture = "";
  69. material = "wlk_lokino\data\wlk_airport_ground.rvmat";
  70. };
  71. };
  72.  
  73. class Legend {
  74.  
  75. picture = "wlk_lokino\source\maplegend.png";
  76. class Colors
  77. {
  78. wlk_snow[] = {{255, 255, 255}};
  79. wlk_slope[] = {{228, 234, 62}};
  80. wlk_forest[] = {{37, 95, 185}};
  81. wlk_grass[] = {{38, 114, 5}};
  82. wlk_rasen[] = {{0, 255, 0}};
  83. wlk_asphalt[] = {{150, 120, 120}};
  84. wlk_gravel[] = {{0, 0, 93}};
  85. wlk_mud[] = {{46, 46, 0}};
  86. wlk_dirt[] = {{71, 38, 102}};
  87. wlk_field_corn[] = {{0, 162, 224}};
  88. wlk_feld_wheat[] = {{200, 0, 105}};
  89. wlk_feld_pebbles[] = {{114, 19, 0}};
  90. wlk_airport_ground[] = {{180, 120, 69}};
  91. wlk_feld[] = {{90, 90, 90}};
  92. wlk_sand[] = {{196, 60, 1}};
  93. wlk_concrete_dirt[] = {{60, 60, 60}};
  94. wlk_seafloor[] = {{0, 0, 0}};
  95. };
  96. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement