ElTotisPro50 Posted January 25 Share Posted January 25 so i made my overlay of 256x256 with GuiUtils.drawTexturedModalRect but as you know that only let you put a max size of 256x256, and i found that AbstractGui.blit let you put the overlay of 1920x1080, but there are 2 parameters that i dont know how them work, i tried some values like (1920x1080, 100x100, 500x500, 1x1, 0x0, ETC) public static void blit(MatrixStack matrixStack, int x, int y, float uOffset, float vOffset, int width, int height, int textureWidth, int textureHeight) { x,y are the position of where the overlay will be rendered, uv offsets are where the image start, and texture width and height are the size of the image(1920,1080) but i dont know what are int width and int height, as i said i tried to put some values but non of them is working(1920x1080, 100x100, 500x500, 1x1, 0x0, ETC) Quote Link to comment Share on other sites More sharing options...
diesieben07 Posted January 25 Share Posted January 25 width and height are the width and height you want to draw. textureWidth and textureHeight are the total size of the texture file. Quote Link to comment Share on other sites More sharing options...
ElTotisPro50 Posted January 25 Author Share Posted January 25 (edited) 2 hours ago, diesieben07 said: width and height are the width and height you want to draw. textureWidth and textureHeight are the total size of the texture file. what do you mean with the width and height i want to draw?, if im using a 1920x1080 image what should i put in width and height Edited January 25 by ElTotisPro50 Quote Link to comment Share on other sites More sharing options...
diesieben07 Posted January 25 Share Posted January 25 Do you want to draw the full 1920x1080 of it? Or say the top left 1000x1000? textureWidth and textureHeight are the size of the PNG file. width and height are the section (or potentially the full thing) of that file that you want to draw. Quote Link to comment Share on other sites More sharing options...
ElTotisPro50 Posted January 25 Author Share Posted January 25 1 hour ago, diesieben07 said: Do you want to draw the full 1920x1080 of it? Or say the top left 1000x1000? textureWidth and textureHeight are the size of the PNG file. width and height are the section (or potentially the full thing) of that file that you want to draw. i want to draw the full 1920x1080 image, thats why (i didnt show you) but my offset is 0,0, i want to draw ALL THE IMAGE, i didnt understand again XD but what values i have to put in width and height(not in textureWidth and textureHeight) this is an extra which class is where minecraft draw the overlay of the pumpkin? Quote Link to comment Share on other sites More sharing options...
diesieben07 Posted January 25 Share Posted January 25 If you want to do the entirety of 1920x1080 (aka 1920x1080) then put that in for width and height. Although like I told you previously, your texture will cause performance problems if it is not a power of 2 in size. Quote Link to comment Share on other sites More sharing options...
ElTotisPro50 Posted January 25 Author Share Posted January 25 1 hour ago, diesieben07 said: If you want to do the entirety of 1920x1080 (aka 1920x1080) then put that in for width and height. Although like I told you previously, your texture will cause performance problems if it is not a power of 2 in size. performance problems?, i saw that the pumpkin overlay's size is 256x256, then how it draws in full screen? Quote Link to comment Share on other sites More sharing options...
ElTotisPro50 Posted January 25 Author Share Posted January 25 1 hour ago, diesieben07 said: If you want to do the entirety of 1920x1080 (aka 1920x1080) then put that in for width and height. Although like I told you previously, your texture will cause performance problems if it is not a power of 2 in size. thats exactly what i did, didnt work Quote Link to comment Share on other sites More sharing options...
diesieben07 Posted January 26 Share Posted January 26 9 hours ago, ElTotisPro50 said: thats exactly what i did, didnt work Show your code. 9 hours ago, ElTotisPro50 said: performance problems?, i saw that the pumpkin overlay's size is 256x256, then how it draws in full screen? You do not have to draw the entire texture (see above). You do not have to draw the texture at 1:1 scale. Quote Link to comment Share on other sites More sharing options...
ElTotisPro50 Posted January 26 Author Share Posted January 26 8 hours ago, diesieben07 said: Show your code. You do not have to draw the entire texture (see above). You do not have to draw the texture at 1:1 scale. (i want to draw my texture in all the screen) MatrixStack matrixStack = new MatrixStack(); mc.getTextureManager().bindTexture(MYOVERLAYTEXTURE); //AbstractGui.blit(stack, x, y, offsetX, offsetY, width, height, textureSizeX, textureSizeY); AbstractGui.blit(stack,0, 0, 0, 0, 1920,1080,1920, 1080); mc.getTextureManager().bindTexture(AbstractGui.GUI_ICONS_LOCATION); Quote Link to comment Share on other sites More sharing options...
poopoodice Posted January 27 Share Posted January 27 It's the "Width on the screen" and "Height on the screen", so in this case the screen width and height. Quote Link to comment Share on other sites More sharing options...
ElTotisPro50 Posted January 27 Author Share Posted January 27 15 hours ago, poopoodice said: It's the "Width on the screen" and "Height on the screen", so in this case the screen width and height. you mean that in width and height i have tu put my screen/monitor resolution? (1366x768) isnt there a way to scale by code the image(256x256) to make it occupy all the screen? Quote Link to comment Share on other sites More sharing options...
poopoodice Posted January 27 Share Posted January 27 (edited) Sorry, to be more specific the "screen" stands for the window. It is the dimension of the texture you are rendering on the screen, for example you want to render a 1920 x 1080 texture on a 16 x 8 button, then the width and height is 16 x 8. In your case you want to fill the whole window, then the width and height is the window width/height got from iirc Minecraft.getInstance().getWindow().getScaledWidth() or getScaledHeight(. Edited January 27 by poopoodice Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.