Posted February 15, 201411 yr In the 1.6.4 version my blocks were rendered like this: public class ItemRendererInventoryColumn implements IItemRenderer{ private ModelColumnBlock model; public ItemRendererInventoryColumn(){ model = new ModelColumnBlock(); } public boolean handleRenderType(ItemStack item, ItemRenderType type) { return true; } public boolean shouldUseRenderHelper(ItemRenderType type, ItemStack item,ItemRendererHelper helper) { return true; } public void renderItem(ItemRenderType type, ItemStack item, Object... data) { TileEntityRenderer.instance.renderTileEntityAt(new ColumnTileEntity().setBlockTypeAndMeta(mod_MoreBlocksMod.columnBlock.get(item.itemID-mod_MoreBlocksMod.columnBlockIDFinal),0), 0.0D, 0.0D, 0.0D, 0.0F); } but now there's no TileEntityRenderer class. I searched for a "renderTileEntityAt" and found the TileEntitySpecialRenderer class, however I can't use that method because is static. Does anyone knows what can I do?
February 15, 201411 yr https://github.com/Draco18s/Artifacts/blob/master/draco18s/artifacts/client/ItemRenderSpikes.java https://github.com/Draco18s/Artifacts/blob/master/draco18s/artifacts/client/SpikesRenderer.java Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
February 16, 201411 yr Author https://github.com/Draco18s/Artifacts/blob/master/draco18s/artifacts/client/ItemRenderSpikes.java https://github.com/Draco18s/Artifacts/blob/master/draco18s/artifacts/client/SpikesRenderer.java Thanks
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.