Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
1,335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.65 KB | None | 0 0
  1. class Layers
  2. {
  3.     class cooley_grass
  4.     {
  5.         texture = "DZ\surfaces\data\terrain\cp_grass_ca.paa";
  6.         material = "DZ\surfaces\data\terrain\cp_grass.rvmat";
  7.     };
  8.    
  9.     class cooley_dirt
  10.     {
  11.         texture = "DZ\surfaces\data\terrain\cp_dirt_ca.paa";
  12.         material = "DZ\surfaces\data\terrain\cp_dirt.rvmat";
  13.     };
  14.    
  15.     class cooley_rock
  16.     {
  17.         texture = "DZ\surfaces\data\terrain\cp_rock_ca.paa";
  18.         material = "DZ\surfaces\data\terrain\cp_rock.rvmat";
  19.     };
  20.  
  21.     class cooley_underwater_rock
  22.     {
  23.         texture = "DZ\surfaces\data\terrain\cp_gravel_ca.paa";
  24.         material = "DZ\surfaces\data\terrain\cp_gravel.rvmat";
  25.     };
  26.  
  27.     class cooley_rock_cliff
  28.     {
  29.         texture = "DZ\surfaces\data\terrain\cp_rock_ca.paa";
  30.         material = "DZ\surfaces\data\terrain\cp_rock.rvmat";
  31.     };
  32.  
  33.     class cooley_rock_cliff_steep
  34.     {
  35.         texture = "DZ\surfaces\data\terrain\cp_rock_ca.paa";
  36.         material = "DZ\surfaces\data\terrain\cp_rock.rvmat";
  37.     };
  38.  
  39.  
  40.     class cooley_broadleaf_dense
  41.     {
  42.         texture = "DZ\surfaces\data\terrain\cp_broadleaf_dense1_ca.paa";
  43.         material = "DZ\surfaces\data\terrain\cp_broadleaf_dense1.rvmat";
  44.     };
  45.  
  46.     class cooley_broadleaf_sparse
  47.     {
  48.         texture = "DZ\surfaces\data\terrain\cp_broadleaf_sparse1_ca.paa";
  49.         material = "DZ\surfaces\data\terrain\cp_broadleaf_sparse1.rvmat";
  50.     };
  51.  
  52.     class cooley_conifer_common1
  53.     {
  54.         texture = "DZ\surfaces\data\terrain\cp_conifer_common1_ca.paa";
  55.         material = "DZ\surfaces\data\terrain\cp_conifer_common1.rvmat";
  56.     };
  57.  
  58.     class cooley_gravel
  59.     {
  60.         texture = "DZ\surfaces\data\terrain\cp_gravel_ca.paa";
  61.         material = "DZ\surfaces\data\terrain\cp_gravel.rvmat";
  62.     };
  63.    
  64.     class cooley_pebbles
  65.     {
  66.         texture = "DZ\surfaces\data\terrain\cp_rock_ca.paa";
  67.         material = "DZ\surfaces\data\terrain\cp_rock.rvmat";
  68.     };
  69.  
  70.     class cooley_grass_tall
  71.     {
  72.         texture = "DZ\surfaces\data\terrain\cp_grass_tall_ca.paa";
  73.         material = "DZ\surfaces\data\terrain\cp_grass_tall.rvmat";
  74.     };
  75.  
  76.     class cooley_conifer_moss1
  77.     {
  78.         texture = "DZ\surfaces\data\terrain\cp_conifer_moss1_ca.paa";
  79.         material = "DZ\surfaces\data\terrain\cp_conifer_moss1.rvmat";
  80.     };
  81. };
  82.  
  83. class Legend
  84. {
  85.   picture="cooley_island\source\mapLegend.png";
  86.   class Colors
  87.   {
  88.         cooley_grass[] = {{140,195,80}};
  89.         cooley_rock[] = {{120,122,122}};
  90.         cooley_underwater_rock[] = {{120,121,120}};
  91.         cooley_pebbles[] = {{175,161,131}};
  92.         cooley_rock_cliff[] = {{120,120,120}};
  93.         cooley_rock_cliff_steep[] = {{80,80,80}};
  94.         cooley_dirt[] = {{175,161,131}};
  95.         cooley_broadleaf_dense[] = {{140,185,70}};
  96.         cooley_broadleaf_sparse[] = {{110,190,80}};
  97.         cooley_gravel[] = {{230,230,120}};
  98.         cooley_grass_tall[] = {{110,180,80}};
  99.         cooley_conifer_common1[] = {{150,180,80}};
  100.         cooley_conifer_moss1[] = {{120,190,80}};
  101.     };
  102. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement