implement biome color

This commit is contained in:
LabyStudio
2022-05-05 01:27:08 +02:00
parent 1d15ad6474
commit 3e2bf1eddb
12 changed files with 127 additions and 52 deletions
+6 -2
View File
@@ -485,8 +485,12 @@ export default class World {
return MathHelper.calculateCelestialAngle(this.time, partialTicks);
}
getTemperature(x, z) {
return 1.24;
getTemperature(x, y, z) {
return 0.75; // TODO implement biomes
}
getHumidity(x, y, z) {
return 0.85; // TODO implement biomes
}
getSkyColor(x, z, partialTicks) {