Minor generation improvements

This commit is contained in:
Anuken
2021-06-12 10:11:37 -04:00
parent ae52eaab19
commit d710c2e8b5
2 changed files with 2 additions and 6 deletions

View File

@@ -44,7 +44,7 @@ public class Planets implements ContentList{
erekir = new Planet("erekir", sun, 1, 2){{
generator = new ErekirPlanetGenerator();
meshLoader = () -> new HexMesh(this, 4);
meshLoader = () -> new HexMesh(this, 5);
atmosphereColor = Color.valueOf("f07218");
startSector = 10;
atmosphereRadIn = 0.02f;
@@ -68,10 +68,6 @@ public class Planets implements ContentList{
drawOrbit = false;
orbitOffset = offsets[fi];
//new SectorPreset(name + "-sector", this, 0){{
//}};
generator = new BlankPlanetGenerator(){
@Override
public void generate(){

View File

@@ -18,7 +18,7 @@ import static mindustry.Vars.*;
public class ErekirPlanetGenerator extends PlanetGenerator{
public float scl = 2f;
public float heightScl = 1f, octaves = 8, persistence = 0.7f, heightPow = 3f, heightMult = 1.5f;
public float heightScl = 0.9f, octaves = 8, persistence = 0.7f, heightPow = 3f, heightMult = 1.6f;
Block[][] arr = {
{Blocks.regolith, Blocks.regolith, Blocks.yellowStone, Blocks.rhyolite, Blocks.basalt}