Planet constructor tweaks
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user