Erekir clouds

This commit is contained in:
Anuken
2022-01-14 13:11:52 -05:00
parent 580e830300
commit e563ce9dcd
7 changed files with 25 additions and 16 deletions

View File

@@ -37,7 +37,7 @@ public class TantrosPlanetGenerator extends PlanetGenerator{
@Override
public Color getColor(Vec3 position){
float depth = Simplex.noise3d(seed, 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);
return c1.write(out).lerp(c2, Mathf.clamp(Mathf.round(depth, 0.15f))).a(0.2f);
}
@Override