mirror of
https://github.com/PuzzleMC/Puzzle.git
synced 2025-12-15 19:35:10 +01:00
Modulized into: puzzle-base (update checker + config) puzzle-gui (unified config gui) puzzle-models (remove limitations) puzzle-blocks (custom render layers) puzzle-splashscreen (resourcepack-provided spash screen) Updated to 1.17
15 lines
661 B
Java
Executable File
15 lines
661 B
Java
Executable File
package net.puzzlemc.gui.screen;
|
|
|
|
import net.minecraft.client.MinecraftClient;
|
|
import net.minecraft.client.util.math.MatrixStack;
|
|
|
|
public class LoadingScreenBackgrond {
|
|
public static void render(MinecraftClient client, MatrixStack matrices, int width, int height, float delta) {
|
|
// if (client.world != null) {
|
|
// LogManager.getLogManager().getLogger("Puzzle").info(client.world.getDimension().toString());
|
|
// }
|
|
// client.getTextureManager().bindTexture(new Identifier("minecraft","optifine/gui/loading/background0.png"));
|
|
// DrawableHelper.drawTexture(matrices,0,0,width,height,0,0,width,height,width,height);
|
|
}
|
|
}
|