Low resolution/ 4:3 No healthbar

Been working on fixing the various interface bugs with a mod. So far I have the health bar working and the shop sort of working.
1726626001659.png
1726626036673.png

I'm still encountering an issue where the store keeps forcing me to scroll up. I think it has something to do with the tooltips.
 
should devs really waste their time making games work in 4:3 in 2024 especially during closed playtests when they could be doing more useful things, its not the 90s and people playing 4:3 on 16:9 monitors then stretching or bb and complaining it doesn't work are even worse.

Its like crying a 2024 game cant run on your 2000s pentium yeah duh.

sry for the rant just how i feel
You can code for these fairly easily. As an example, they used a hard pixel amount for the size of the UI element, when they could have used a percentage of screen size or resolution. Same amount of code, with the latter being far more flexible.
So to answer your question in 2024 this should not even be an issue because multi resolution displays and aspect ratios exsist..
 
You can code for these fairly easily. As an example, they used a hard pixel amount for the size of the UI element, when they could have used a percentage of screen size or resolution. Same amount of code, with the latter being far more flexible.
So to answer your question in 2024 this should not even be an issue because multi resolution displays and aspect ratios exsist..

Speaking as someone who's looking at it, a lot of the interface coding is really sloppy.

For instance, the reason the health bar disappears on 4:3 screens is because the way it's positioned is laughably janky. It's in a center-aligned container div with a giant right margin that "pushes" it to the left. The container div is so wide that it spills off the screen on narrow aspect ratios, and the entire thing doesn't render. Why they didn't just align it to the left edge of the screen, the area its closest to, is beyond me.
 
Back
Top