use of rtg.api.world.deco.DecoPond in project Realistic-Terrain-Generation by Team-RTG.
the class RealisticBiomeBOPCrag method initDecos.
@Override
public void initDecos() {
DecoPond decoPond = new DecoPond();
// very high because most are blocked by topography
decoPond.setChunksPerPond(3);
DecoHelperBorder borderedPond = new DecoHelperBorder(decoPond, 0.8f, 0.7f);
this.addDeco(borderedPond);
DecoBaseBiomeDecorations decoBaseBiomeDecorations = new DecoSingleBiomeDecorations();
this.addDeco(decoBaseBiomeDecorations);
}
Aggregations