
Cannot use negative numbers properly
AlexIIL opened this issue ยท 23 comments
Er, wrong issue and yes? (I'm assuming you mean in response to #24)
@AlexIIL Not really. This bug is gone. I have a slightly different problem.
I made a picture with progress bars 400x400 pixels. The height of each progress bar I have 32 pixels. And the result here is:
That file images.json:
http://pastebin.com/RPT8C9sm
If I make the width of 256 and a height of 16 in the config is all right.
But why is this happening when I picture sizes 400x400 and get yourself progress bars width and height 400h32?
Oh, sorry, its to do with how minecraft interprets image sizes. It has to assume that all images are 256x256 in size, so you have to change the texture height and width to be between 0 and 256 :/ (Can I see your image file?)
(Internally, it changes all images sizes to be decimals between 0 and 1, so it divides the pixels by 256... which means that you should use an image of sizes that are multiples of 256, like 512, for the image to fit properly and use a good number)
@AlexIIL 512x512 will work fine? Or only 256x256?
512x512 would be fine, but you would have to divide the pixel positions by 2 (so if your progress bar is 32 pixels high, you would use 16 as the height in the config)
@AlexIIL That is, the progress bar should be the size 512ั 16?
one bar progress bar is 32 pixels. Accordingly, two strips of the progress bar is 64 pixels.
@AlexIIL That is, the progress bar should be the size 512ั
16?
Sorry, yes. But 512x32 would also be ok
@AlexIIL Thanks!
@AlexIIL Well, I need to alter the image size of 512x512, and then I can say
@AlexIIL 512x512 not working. Only 256x256
@AlexIIL I made a picture size of 512x512. Progress bar sizes 512x32.
I ran the client.
And get this:
Config: http://pastebin.com/PMVV8SrB
Change the texture width and height from 512, 32 to 256, 16 for both, and change the y value for the dynamic percentage to 17 and it should work fine
@AlexIIL Well, I did, and everything is fine.
I wrote that 512x512 does not work simply.
(The values for the texture go from 0 at one end of the texture to 256 at the other end)
Ok. I guess I'm going to need to put that on a wiki and explain it properly to avoid confusion
@AlexIIL Ok.
I have a question. Will the implementation of the change buttons in Gui? (Singleplayer, multiplayer, options and so on)
@AlexIIL Thanks