Jump to content

Render an image over the hud?


snocavotia

Recommended Posts

Hi

 

yes there is; many ways in fact

 

eg if you hook into RenderWorldLastEvent, you can then draw whatever you want over the top of what has been drawn already.

 

 

@ForgeSubscribe

  public void drawSelectionBox(RenderWorldLastEvent event)

  {

      // put your rendering code here

 

  }

 

called from here

EntityRenderer.renderWorld

 

Is that what you were looking for?

 

-TGG

Link to comment
Share on other sites

Hi

 

Hmm that varies quite a bit depending on what you want to render.

 

Fonts I don't know about, but the vanilla code has lots of examples

  eg TileEntitySignRenderer.renderTileEntitySignAt

  or GuiTextField.drawTextBox.

 

General textures I know  a bit about-

  http://greyminecraftcoder.blogspot.com.au/2013/08/the-tessellator.html

  http://greyminecraftcoder.blogspot.com.au/2013/09/sample-code-for-rendering-items.html

 

If you tell us what exactly you want to do, then wiser folks than I might be able to chip in with something helpful.

 

-TGG

 

 

Link to comment
Share on other sites

If you want to render anything in the 3D world you can use RenderWorldLastEvent like TheGreyGhost explained. If you want to draw anything on your 2D HUD however, you could implement ITickHandler and do your rendering every render tick.

 

@SideOnly(Side.CLIENT)
public class TickHandler implements ITickHandler{
    @Override
    public void tickStart(EnumSet<TickType> type, Object... tickData){

    }

    @Override
    public void tickEnd(EnumSet<TickType> type, Object... tickData){
        if(type.contains(TickType.RENDER)) {
              //Render code here, use the links TheGreyGhost gave you 
        }
    }

    @Override
    public EnumSet<TickType> ticks(){

        return EnumSet.of(TickType.RENDER);
    }

    @Override
    public String getLabel(){
        return "Name of your TickHandler";
    }

 

And registering it in your ClientProxy:

TickRegistry.registerTickHandler(new TickHandler(), Side.CLIENT);

 

Author of PneumaticCraft, MineChess, Minesweeper Mod and Sokoban Mod. Visit www.minemaarten.com to take a look at them.

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.

Announcements



×
×
  • Create New...

Important Information

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