Generator cleanup

This commit is contained in:
Anuken
2020-02-20 20:28:23 -05:00
parent 97f342aceb
commit 99d3e9ae7c
13 changed files with 178 additions and 232 deletions

View File

@@ -120,8 +120,8 @@ public class TestPlanetGenerator implements PlanetGenerator{
tiles.each((x, y) -> tiles.get(x, y).setBlock(!read.get(x, y) ? Blocks.air : tiles.get(x, y).floor().wall));
distort(0.009f, 12f);
OvergrowthGenerator gen = new OvergrowthGenerator(tiles.width, tiles.height);
gen.decorate(tiles);
OvergrowthGenerator gen = new OvergrowthGenerator();
gen.generate(tiles);
//tiles.get(tiles.width /2, tiles.height /2).setBlock(Blocks.coreShard, Team.sharded);
}