Testing Github Actions CI

This commit is contained in:
Anuken
2020-11-19 18:53:02 -05:00
parent 15ef32447c
commit f71b726877
10 changed files with 116 additions and 34 deletions

View File

@@ -439,7 +439,7 @@ public class SerpuloPlanetGenerator extends PlanetGenerator{
state.rules.waves = sector.info.waves = true;
state.rules.enemyCoreBuildRadius = 600f;
state.rules.spawns = Waves.generate(difficulty);
state.rules.spawns = Waves.generate(difficulty, new Rand(), state.rules.attackMode);
}
@Override

View File

@@ -15,7 +15,7 @@ public class TantrosPlanetGenerator extends PlanetGenerator{
@Override
public Color getColor(Vec3 position){
float depth = (float)noise.octaveNoise3D(2, 0.56, 1.7f, position.x, position.y, position.z) / 1.7f;
float depth = (float)noise.octaveNoise3D(2, 0.56, 1.7f, position.x, position.y, position.z) / 2f;
return c1.write(out).lerp(c2, Mathf.clamp(Mathf.round(depth, 0.15f))).a(0.6f);
}
}