Advertisement
HaniiPuppy

Road Config

Aug 25th, 2016
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.21 KB | None | 0 0
  1.         RoadStyle style = new RoadStyle(3);
  2.        
  3.        
  4.         style.addTilePlacer(40, new BasicRoadTilePlacer(Blocks.GRASS.getDefaultState()));
  5.         style.addTilePlacer(7, new BasicRoadTilePlacer(Blocks.STONEBRICK.getDefaultState()));
  6.         style.addTilePlacer(1, new BasicRoadTilePlacer(Blocks.DOUBLE_STONE_SLAB.getDefaultState()));
  7.         style.addTilePlacer(1, new BasicRoadTilePlacer(Blocks.STONEBRICK.getStateFromMeta(3)));
  8.         style.addTilePlacer(1, new BasicRoadTilePlacer(Blocks.STONE.getStateFromMeta(6)));
  9.         style.addTilePlacer(4, new BasicRoadTilePlacer(Blocks.COBBLESTONE.getDefaultState()));
  10.         style.addTilePlacer(4, new BasicRoadTilePlacer(Blocks.GRAVEL.getDefaultState()));
  11.         style.addTilePlacer(3, new BasicRoadTilePlacer(Blocks.STONEBRICK.getStateFromMeta(2)));
  12.         style.addTilePlacer(2, new BasicRoadTilePlacer(Blocks.STONE.getStateFromMeta(5)));
  13.         style.addTilePlacer(2, new BasicRoadTilePlacer(Blocks.STONE.getDefaultState()));
  14.         style.addTilePlacer(9, new BasicRoadTilePlacer(Blocks.STONEBRICK.getStateFromMeta(1)));
  15.         style.addTilePlacer(6, new BasicRoadTilePlacer(Blocks.MOSSY_COBBLESTONE.getDefaultState()));
  16.        
  17.         return style;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement