Jump to content

[Solved] [1.17.1] Rendering: GUI Elements and Fog


Recommended Posts

Posted (edited)

I have two semi-related problems, both involving rendering.

For the first situation I want to hide the air bubbles/breath bar when a particular piece of armor is worn. Previously I used 

RenderGameOverlayEvent.Pre event

and canceled the event if the element type was 

ElementType.AIR

which no longer exists in 1.17 it seems, and now I'm not sure how to recreate this functionality with the new system.

For the second, I want to disable the under-lava-view fog when a particular piece of armor is worn. Previously I used 

EntityViewRenderEvent.FogDensity event

and

RenderSystem.fogStart(0.0F);
RenderSystem.fogEnd(1024F);
event.setDensity(0.05F);
event.setCanceled(true);

to achieve the desired result.

To be honest with you I don't remember how I came up with that solution anymore, only that fogStart and fogEnd became deprecated at some point before 1.16.5 (as I found out when finally updating my mod yesterday), and are completely removed now. For 1.17 I tried replacing those with 

RenderSystem.setShaderFogStart(0.0F);
RenderSystem.setShaderFogEnd(1024F);

which has no effect, unless I'm missing something else for that to work. Not sure how to get the same effect here.

Edited by Rohzek

Developing the Spiral Power Mod .

こんにちは!お元気ですか?

  • Rohzek changed the title to [Solved] [1.17.1] Rendering: GUI Elements and Fog
  • 1 month later...

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.

Announcements



×
×
  • Create New...

Important Information

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