分享个Minecraft 模组打开GUI的代码

本文分享了在Minecraft游戏中创建模组并打开GUI的代码实现,包括sreen.java和menu.java的主要功能,同时强调了正确处理文件路径的重要性。
摘要由CSDN通过智能技术生成

#分享个Minecraft 模组打开GUI的代码
gui代码
sreen.java

package hskgzscz.client.gui;

import net.minecraft.world.level.Level;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.entity.player.Inventory;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.network.chat.Component;
import net.minecraft.client.gui.screens.inventory.AbstractContainerScreen;
import net.minecraft.client.Minecraft;

import java.util.HashMap;

import hskgzscz.world.inventory.H45Menu;

import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.systems.RenderSystem;

public class H45Screen extends AbstractContainerScreen<H45Menu> {
   
	private final static HashMap<String, Object> guistate = H45Menu.guistate;
	private final Level world;
	private final int x, y, z;
	private final Player entity;

	public H45Screen(H45Menu container, Inventory inventory, Component text) {
   
		super(container, inventory, text);
		this.world = container.world;
		this.x = container.x;
		this.y = container.y;
		this.z = container.z;
		this.entity = container.entity;
		this.imageWidth = 304;
		this.imageHeight = 178;
	}

	private static final ResourceLocation texture = new ResourceLocation("hskgzscz:textures/hsk_001.png");

	@Override
	public void render(PoseStack ms, int mouseX, int mouseY, float partialTicks) {
   
		this.renderBackground(ms);
		super.render(ms, mouseX, mouseY, partialTicks);
		this.renderTooltip(ms, mouseX, mouseY);
	}

	@Override
	protected void renderBg(PoseStack ms, float partialTicks, int gx, int gy) {
   
		RenderSystem.setShaderColor(1, 1, 1, 1);
		RenderSystem.enableBlend();
		RenderSystem.defaultBlendFunc();
		RenderSystem.setShaderTexture(0, texture);
		this.blit(ms, this.leftPos, this.topPos, 0, 0, this.imageWidth, this.imageHeight, this.imageWidth, this.imageHeight);

		RenderSystem.setShad
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值