Jump to content

[1.7.10] [Solved] Changing a block's model?


Recommended Posts

Posted

I'm aware that in 1.8 Json files handle the models for blocks. However I'm working in 1.7.10 (I have decided 1.8 isn't stable enough for my liking) that being said, how would I do this in 1.7.10? I've got the techne model prepared, and I know how to make a basic block. Thanks in advance. :)

Posted

You need to implement a "TileEntitySpecialRenderer"

 

Look at this wiki page http://www.minecraftforge.net/wiki/Tile_entity_special_renderer

 

and this

 

http://greyminecraftcoder.blogspot.com/2013/07/block-rendering.html

 

I'm currently working on a mod that uses both the "ISimpleBlockRenderingHandler" and the "TileEntitySpecialRenderer", the "ISimpleBlockRenderingHandler" allows you to customize the look of how a block looks like in the inventory and in the world.

 

void renderInventoryBlock(Block block, int metadata, int modelId, RenderBlocks renderer);

boolean renderWorldBlock(IBlockAccess world, int x, int y, int z, Block block, int modelId, RenderBlocks renderer);

I require Java, both the coffee and the code :)

Posted

You need to implement a "TileEntitySpecialRenderer"

 

Look at this wiki page http://www.minecraftforge.net/wiki/Tile_entity_special_renderer

 

and this

 

http://greyminecraftcoder.blogspot.com/2013/07/block-rendering.html

 

I'm currently working on a mod that uses both the "ISimpleBlockRenderingHandler" and the "TileEntitySpecialRenderer", the "ISimpleBlockRenderingHandler" allows you to customize the look of how a block looks like in the inventory and in the world.

 

void renderInventoryBlock(Block block, int metadata, int modelId, RenderBlocks renderer);

boolean renderWorldBlock(IBlockAccess world, int x, int y, int z, Block block, int modelId, RenderBlocks renderer);

 

Ok, I'll try that. :)

 

Edit: @Belpois Uhh, I looked at the tutorial, and there is nothing about adding a model. It just tells me about the Tesselator. Is there a way to render a model with the Tesselator?

Posted

Lol, I wasn't looking at the TileEntitySpecialRenderer tutorial, I got it to work (although the textures are buggy). Bv9g2dO.png Thanks for your help.

Posted

Lol, I wasn't looking at the TileEntitySpecialRenderer tutorial, I got it to work (although the textures are buggy). -snip- Thanks for your help.

 

Send your render code so that I can help you with the texture issues.

Posted

Lol, I wasn't looking at the TileEntitySpecialRenderer tutorial, I got it to work (although the textures are buggy). -snip- Thanks for your help.

 

Send your render code so that I can help you with the texture issues.

 

The texture issues are fixed now. It was a problem with my modid or something. :)

Posted

Your welcome, Is that a technie model or you wrote the vertices yourself?

 

It's a techne model. :) I'm not near as experienced with vertices and techne does it all for me.

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.