Posted August 11, 201510 yr What is the right way to render a bounding box for a selection of points on screen (with the blocks in the bounding box highlighted in some fashion (like transluscent red) ? There appear to be some functions way down in the source code for handling bounding boxes and was wondering how to maybe use those to achieve the effect (e.g. area selected by the player is highlighted)..... I don't keep an open mind lest someone try to fill it with garbage - Mark Twain
August 11, 201510 yr Hi I'd suggest 1) Subscribe to the RenderGameOverlayEvent.Pre event 2) Use the Tessellator in GL11.GL_LINE_STRIP to draw the edges of your box I've posted some similar code from one of my mods which might help you with the key bits, there are a couple of aspects that are hard to figure out from scratch. https://gist.github.com/TheGreyGhost/035513e206b784591128 -TGG
August 12, 201510 yr Author Thanks ! I was on the right track and looking at looking at some nifty code from: Irtimaled: https://github.com/irtimaled BoundingBoxReloaded... Got to reading about the tessalotor thing on the minecraft.net page and figured it was the way to go... j ust couldn't figure where (which event) to fire it (still rudamentary knowledge of all the proper events at this point).... I don't keep an open mind lest someone try to fill it with garbage - Mark Twain
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.