Mountains

This commit is contained in:
paulevsGitch 2020-10-07 04:48:49 +03:00
parent 20bb6379bf
commit 466dd6604d
10 changed files with 198 additions and 39 deletions

View file

@ -156,8 +156,6 @@ public abstract class SDF {
}
public void fillRecursive(StructureWorld world, BlockPos start) {
long t = System.currentTimeMillis();
Map<BlockPos, PosInfo> mapWorld = Maps.newHashMap();
Map<BlockPos, PosInfo> addInfo = Maps.newHashMap();
Set<BlockPos> blocks = Sets.newHashSet();
@ -206,8 +204,5 @@ public abstract class SDF {
BlockState state = postProcess.apply(info);
world.setBlock(info.getPos(), state);
});
t = System.currentTimeMillis() - t;
System.out.println("SDF " + t + " ms");
}
}