This commit is contained in:
Anuken
2020-05-10 10:37:36 -04:00
parent 0adc2811bb
commit dabc891791
2 changed files with 2 additions and 12 deletions

View File

@@ -49,17 +49,7 @@ public class PlanetDialog extends FloatingDialog{
private Planet planet = Planets.starter;
private @Nullable Sector selected, hovered;
private Table stable;
private Mesh atmosphere = MeshBuilder.buildHex(new HexMesher(){
@Override
public float getHeight(Vec3 position){
return 0;
}
@Override
public Color getColor(Vec3 position){
return Color.white;
}
}, 2, false, 1.5f, 0f);
private Mesh atmosphere = MeshBuilder.buildHex(Color.white, 2, false, 1.5f);
//seed: 8kmfuix03fw
private CubemapMesh skybox = new CubemapMesh(new Cubemap("cubemaps/stars/"));