Jump to content

bbProgrammer

Members
  • Posts

    18
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

bbProgrammer's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Is there any tutorial for simple model block? Thanks if you respond to me
  2. Never mind i just forget to do gradlew.bat eclipse.
  3. If I install ForgeGradle: :downloadClient SKIPPED :downloadServer SKIPPED :mergeJars SKIPPED And if I start eclipse there is errors. Anyone know what is problem?
  4. http://www.minecraftforge.net/wiki/Custom_Tile_Entity_Renderer that code renders and rotates but model is upside down. What i need to change?
  5. In block file I have done but i don't know what i'm doing render file. It is here: http://pastebin.com/M0kjbVkZ What i have to change? If i use that code http://www.minecraftforge.net/wiki/Custom_Tile_Entity_Renderer it rotates but model is't right place.
  6. I don't mean that I mean if you place a block like a chest. Then i want the block front side is front of the player.
  7. This tutorial is without rotating. But I want to make its rotating.
  8. okey I try. But one thing more. If I place a block it is not rotating. I made block with this tutorial http://www.minecraftforge.net/wiki/Rendering_a_Techne_Model_as_a_Block
  9. I set blockbouds to this.setBlockBounds(0.0F, 0.0F, -1.0F, 1.0F, 1.0F, 1.0F); But one problem is more my model is 2 blocks but one block is air.
  10. Hey I created model and its works, but where i get block bounds? Thanks
  11. i changed updateIcons to registerIcons and now it works.
  12. I have problem my item icons shows no texture my code is: package bbBlocks; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.item.Item; import net.minecraft.util.Icon; public class bbItem extends Item { private String iconPath; @SideOnly(Side.CLIENT) private Icon icon; public bbItem(int par1, String par2String) { super(par1); this.iconPath = par2String; } @SideOnly(Side.CLIENT) public void updateIcons(IconRegister iconRegister) { this.icon = iconRegister.registerIcon("bbBlocks:" + this.iconPath); } @SideOnly(Side.CLIENT) @Override public Icon getIconFromDamage(int par1){ return this.icon; } }
  13. My mod works perfectly recommended forge (7.7.1.611)
  14. I changed the iconregister but I get the same error. I download now recommended forge.
  15. newest forge 7.7.1.624
×
×
  • Create New...

Important Information

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