Jump to content

[HELP] Positioning text above hotbar


Bets

Recommended Posts

Hi guys!

I'm trying to display text at the center of the screen above the hotbar by using ingameGUI.drawCenteredString.

 

I managed to get the horizontal center of the screen by:

mc.displayWidth / 4

It does the job pretty well.

 

Now, I am trying to position it vertically a little bit above the hotbar. The problem is it always moves when I change the resolution of the screen, this is what I tried doing:

mc.displayHeight - 100

This is just an example, it actually is not in the screen when I do this, but you get it.

So do any of you guys know how can I make it position itself exactly above the hotbar? I'll appreciate it very much :)

 

Edited by Bets
Link to comment
Share on other sites

Dividing by 4 to get to the middle? Sounds a bit weird to me.

 

Show the code where you try to do this.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

1 hour ago, larsgerrits said:

Dividing by 4 to get to the middle? Sounds a bit weird to me.

 

Show the code where you try to do this.

 

 

That's how you get the horizontal center, it works fine. I need the vertical position that doesn't work because it always changes :(

mc.ingameGUI.drawCenteredString(mc.fontRendererObj, context, mc.displayWidth / 4, mc.displayHeight - 400, 0xFFFFFF);

 

Link to comment
Share on other sites

2 minutes ago, diesieben07 said:

That's not how you center something. First of all you need to calculate the scaled display size using ScaledResolution. Then to center something you do (screenSize - thingSize) / 2 (works for both horizontal and vertical).

 

 

The centering works, I want to position the text above the hotbar, like where the food levels and hp are

Link to comment
Share on other sites

4 hours ago, diesieben07 said:

Then you start at the bottom (screen height) and subtract the height of the food bar.

 

This what I did, as mentioned before:

mc.displayHeight - 100

Doesn' work. when I change the screen size vertically it moves the text down for some weird reason.

Link to comment
Share on other sites

ScaledResolution has a constructor taking a Minecraft parameter. You can use it to create your own.

  • Like 1

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

5 minutes ago, larsgerrits said:

ScaledResolution has a constructor taking a Minecraft parameter. You can use it to create your own.

 

 

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

Make a new instance of ScaledResolution, get the scaled width/height and use that as the screen size.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

How about you show what you tried and extrapolate on "it isn't working."

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

11 hours ago, TheSunCat said:

Minecraft mc = Minecraft.getMinecraft();
ScaledResolution sr = new ScaledResolution(mc);

 

 

By the way, is there a syntax highlighting option for Java? This is a forum based on MC Forge, the "Code" insertion should have a Java syntax highlight...

 
 

I did this. but when I type for example ScaledResolution. (and than ctrl+space) it gives me nothing to work with for some reason

EDIT: Nvm I got it to work now, thanks!

Edited by Bets
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.