Jump to content

Fading Blackscreen


Darki

Recommended Posts

I want to make a Blackscreen thats starts fading in when you have only 3 air when you are under water and when you have 0 air and starts drowning that the blackscreen is full faded in. And when you come over water when its starts fading in that the blackscreen instantly fading out. I hope you understand this. An Example is Subnautica, when you have not enough air. The screen will darker

Link to comment
Share on other sites

Look at how the blindness potion works.

 

You'll need to subscribe to the FogDensity event and do some manipulation to it/the GL state.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Receive the RenderGameOverlayEvent.Pre, and use Minecraft.getMinecraft().thePlayer#getAir() to check the player's air value.  If it's below a certain amount, draw a quad over the screen using the resolution stored in the event, turn GL blending on, and use glColor4f(0f, 0f, 0f, x), where x is an equation that increments upwards over time, preferably using partial ticks, to fade the black box in.  At least, that's how I'd try it first.

Link to comment
Share on other sites

I want to make a Blackscreen thats starts fading in when you have only 3 air when you are under water and when you have 0 air and starts drowning that the blackscreen is full faded in. And when you come over water when its starts fading in that the blackscreen instantly fading out. I hope you understand this. An Example is Subnautica, when you have not enough air. The screen will darker

 

Receive the RenderGameOverlayEvent.Pre, and use Minecraft.getMinecraft().thePlayer#getAir() to check the player's air value.  If it's below a certain amount, draw a quad over the screen using the resolution stored in the event, turn GL blending on, and use glColor4f(0f, 0f, 0f, x), where x is an equation that increments upwards over time, preferably using partial ticks, to fade the black box in.  At least, that's how I'd try it first.

 

You can also check out GuiIngameForge#renderSleepFade to see how the sleeping fade works if you want a reference point.

Link to comment
Share on other sites

(From a purely aesthetical point of view, the fog will probably look better, as it will lower the maximum view distance as well as make things darker, rather than a 2D flat overlay, giving the effect of tunnel vision).

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

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.

Announcements



×
×
  • Create New...

Important Information

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