1
0
Fork 0

improve rendering, fix lightmap

This commit is contained in:
Sen 2025-08-31 00:30:48 +02:00
parent 82b57873c2
commit ec9173433e
Signed by: sen
GPG key ID: 3AC50A6F47D1B722
12 changed files with 186 additions and 102 deletions

View file

@ -431,6 +431,10 @@ public class Client implements IThreadListener {
public int getCombinedLight(BlockPos pos) {
return Client.this.renderer.getCombinedLight(pos);
}
public int getCombinedBrightness(BlockPos pos) {
return Client.this.renderer.getCombinedBrightness(pos);
}
}
public static final String VERSION = Version.NAME + " Client " + Util.VERSION;