Jump to content

[Help] icon.getMaxU(), icon.getMinV()... etc


oblisgr

Recommended Posts

What this line actually does?

Is there any difference haveing those icon.getMaxU() etc or having numbers? And why?

Need code line explain please.

Thanks

 

ItemRenderer.renderItemIn2D(Tessellator.instance, icon.getMaxU(), icon.getMinV(), icon.getMinU(), icon.getMaxV(), icon.getIconWidth(), icon.getIconHeight(), 16F / 256F);

Link to comment
Share on other sites

Item and block textures are icons, because they are stitched onto a spritesheet at startup, reducing the required memory for texture storage. The Tessellator class uses U and V coordinates to render a texture. The U and V usually translate to the X and Y coordinates of the item texture on the spritesheet. If you are rendering a texture directly with Minecraft.renderEngine.bind(ResourceLocation), the U and V is usually 0 and 1, with 0 being, well 0, and 1 being the width/height of the texture. So the item's U and V is usually between those 2 numbers.

 

If you are using ItemRenderer, you don't need to worry about these methods. You only need to know about them if you are using the Tessellator directly.

 

It's the same as the glTexCoords2() in OpenGL (which Minecraft uses for rendering)

Romejanic

 

Creator of Witch Hats, Explosive Chickens and Battlefield!

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.



×
×
  • Create New...

Important Information

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