xwerswoodx Posted November 9, 2014 Posted November 9, 2014 I saw some mods use .obj file and I try to add my obj file but I couldn't. I remove all the code and I start again. I want to give a new texture to my block. public static Block nightBlock; this.nightBlock = new addblock("nightblock", Material.iron, Block.soundTypeStone, 2.0F, "pickaxe", 2); public class addblock extends Block { public addblock(String name, Material material, SoundType sound, float hardness, String item, int level) { super(material); this.setHardness(hardness); this.setStepSound(sound); this.setCreativeTab(CreativeTabs.tabBlock); this.setBlockName(name); this.setBlockTextureName(name); this.setHarvestLevel(item, level); GameRegistry.registerBlock(this, name); } @SideOnly(Side.CLIENT) @Override public void registerBlockIcons(IIconRegister reg) { this.blockIcon = reg.registerIcon(ref.uid + ":" + this.getTextureName()); } } But I didn't understand how can I add my obj file. My obj file location is; mod:textures/models/obj/hamit.obj Quote
chimera27 Posted November 10, 2014 Posted November 10, 2014 (edited) ---------------- Edited August 18, 2018 by chimera27 Quote Creator of Metroid Cubed! Power Suits, Beams, Hypermode and more! http://i.imgur.com/ghgWmA3.jpg[/img]
Recommended Posts
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.