Planet constructor tweaks

This commit is contained in:
Anuken
2021-06-09 22:18:54 -04:00
parent 1ce6772601
commit 35be671d86
2 changed files with 21 additions and 19 deletions

View File

@@ -15,7 +15,7 @@ public class Planets implements ContentList{
@Override
public void load(){
sun = new Planet("sun", null, 0, 2){{
sun = new Planet("sun", null, 2){{
bloom = true;
accessible = false;
@@ -32,7 +32,7 @@ public class Planets implements ContentList{
);
}};
erekir = new Planet("erekir", sun, 2, 1){{
erekir = new Planet("erekir", sun, 1, 2){{
generator = new ErekirPlanetGenerator();
meshLoader = () -> new HexMesh(this, 4);
atmosphereColor = Color.valueOf("f07218");
@@ -42,7 +42,7 @@ public class Planets implements ContentList{
tidalLock = true;
}};
tantros = new Planet("tantros", sun, 2, 1){{
tantros = new Planet("tantros", sun, 1, 2){{
generator = new TantrosPlanetGenerator();
meshLoader = () -> new HexMesh(this, 4);
atmosphereColor = Color.valueOf("3db899");
@@ -51,7 +51,7 @@ public class Planets implements ContentList{
atmosphereRadOut = 0.3f;
}};
serpulo = new Planet("serpulo", sun, 3, 1){{
serpulo = new Planet("serpulo", sun, 1, 3){{
generator = new SerpuloPlanetGenerator();
meshLoader = () -> new HexMesh(this, 6);
atmosphereColor = Color.valueOf("3c1b8f");