Water color

This commit is contained in:
paulevsGitch 2020-12-02 04:31:32 +03:00
parent 10fae49f6a
commit 539da4bac1
10 changed files with 56 additions and 13 deletions

View file

@ -166,6 +166,10 @@ public class BiomeDefinition {
return this;
}
public BiomeDefinition setWaterAndFogColor(int r, int g, int b) {
return setWaterColor(r, g, b).setWaterFogColor(r, g, b);
}
public BiomeDefinition setFoliageColor(int r, int g, int b) {
this.foliageColor = getColor(r, g, b);
return this;