Jump to content

terschegget

Members
  • Posts

    13
  • Joined

  • Last visited

Converted

  • Gender
    Male
  • Location
    Netherlands
  • Personal Text
    I am new!

terschegget's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. i have tried both a item and a block
  2. my textures are finalie loaded butt I need to plase them inside "project"/bin/assets/"modID"/textures/blocks or items
  3. I also have noticed that forge don't see my mod.info
  4. that was all the time lowercase
  5. i have set my ModID to lowercase this.setTextureName(Reference.MOD_ID.toLowerCase() + ":" + ItemID.TESTITEM_ITEM_U_NAME);
  6. this public static final String MOD_ID = "TR";
  7. I have done that package terschegget.techrom.item; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; import terschegget.techrom.lib.ItemID; import terschegget.techrom.lib.Reference; public class TestItem extends Item { public TestItem(int id) { super(id); this.setUnlocalizedName(ItemID.TESTITEM_ITEM_U_NAME); this.setCreativeTab(CreativeTabs.tabMisc); maxStackSize = 64; this.setTextureName(Reference.MOD_ID + ":" + ItemID.TESTITEM_ITEM_U_NAME); } }
  8. i have noticed that minecraft is looking for my texturs in minecraft:textures butt my mod isn't in /forge/mcp/eclips it is outside /forge
  9. I have done that butt it didn't load the texturs.
  10. my code is in src/main/java and my texturs are in src/main/resources/assets/mod id/texturs/ items or blocks
  11. I think it is because of that I am using a different setup. I am using the setup that pahimar showed in his series. Can some one explane how I can load my textures?
×
×
  • Create New...

Important Information

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