Jump to content

[1.16.5] Help with custom Overlay


Luis_ST

Recommended Posts

I have a custom overlay, it works fine,

but the xp bar and health and hunger are above the overlay so how to change that

or is there a way to disable the rendering of xp bar hunger and health?

2021-02-10_18_05_25.thumb.png.88f17606c0a598cb3b38abb1db5a21e3.png

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

this is the code of my event:

 

	@SubscribeEvent(priority = EventPriority.HIGHEST)
	@SuppressWarnings({ "resource", "static-access" })
	public static void RenderSpyglassOverlay(RenderGameOverlayEvent event) {
		
		if (event.getType() != ElementType.BOSSHEALTH) {
			
			return;
			
		}
		
		PlayerEntity player = Minecraft.getInstance().player;
		GameSettings settings = Minecraft.getInstance().gameSettings;
		int posX = event.getWindow().getScaledWidth();
		int posY = event.getWindow().getScaledHeight();
		
		if (player.getActiveItemStack().getItem() == ModItems.SPYGLASS.get()) {
			
			if (settings.getPointOfView()== PointOfView.FIRST_PERSON) {
				
				RenderSystem.disableDepthTest();
				RenderSystem.depthMask(false);
				RenderSystem.enableBlend();
				RenderSystem.blendFunc(770, 771);
				Minecraft.getInstance().getTextureManager().bindTexture(new ResourceLocation("cave:textures/misc/spyglass_scope.png"));
				Minecraft.getInstance().ingameGUI.blit(event.getMatrixStack(), 0, 0, 0, 0, posX, posY, 480, 270);
				RenderSystem.depthMask(true);
				RenderSystem.enableDepthTest();
				
			}
			
		}
		
	}

 

 

 

 

Edited by Luis_ST
add code
Link to comment
Share on other sites

16 minutes ago, ChampionAsh5357 said:

Use the check during the different element types to cancel the associated rendering. Also, subscribe to either $Pre or $Post, not both. Otherwise, you are just rendering the information twice.

now i use this but it dosent work:

	@SubscribeEvent(priority = EventPriority.HIGHEST)
	@SuppressWarnings({ "resource", "static-access" })
	public static void RenderSpyglassOverlay(RenderGameOverlayEvent.Pre event) {
		
		ElementType type = event.getType();
		
		if (type != ElementType.BOSSHEALTH) {
			
			return;
			
		}
		
		switch (type) {
		case HEALTH: event.setCanceled(true);
		case FOOD: event.setCanceled(true);
		case ARMOR: event.setCanceled(true);
		case EXPERIENCE: event.setCanceled(true);
		default:
		}
		
		PlayerEntity player = Minecraft.getInstance().player;
		GameSettings settings = Minecraft.getInstance().gameSettings;
		int posX = event.getWindow().getScaledWidth();
		int posY = event.getWindow().getScaledHeight();
		
		if (player.getActiveItemStack().getItem() == ModItems.SPYGLASS.get()) {
			
			if (settings.getPointOfView()== PointOfView.FIRST_PERSON) {
				
				RenderSystem.disableDepthTest();
				RenderSystem.depthMask(false);
				RenderSystem.enableBlend();
				RenderSystem.blendFunc(770, 771);
				Minecraft.getInstance().getTextureManager().bindTexture(new ResourceLocation("cave:textures/misc/spyglass_scope.png"));
				Minecraft.getInstance().ingameGUI.blit(event.getMatrixStack(), 0, 0, 0, 0, posX, posY, 480, 270);
				RenderSystem.depthMask(true);
				RenderSystem.enableDepthTest();
				
			}
			
		}
		
	}

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.