Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

In 1.5, the file structure for textures changed. I know that blocks and item textures go into [modname]/textures/blocks or items.

 

My simple question is: Where would Armor go? Icons in /items? Also, the actual in-game armor, does it go into a new folder or what?

If you look in here: C:\Users\user\Desktop\forge\mcp\temp\bin\minecraft\textures\items

in where you install your forge folder, that is where the vanilla minecraft keeps all the items at.So keep armour in the items folder. Hope I was right :D

  • Author

I got the in-game armor to appear just now by putting it in /modname/textures/armor/armor_1/.png

 

The icons for the items still wont show...

 

How do i setup the updateIcons method for armor? Or do I even use that?

This is what i do for my crystal sword:

public void updateIcons(IconRegister iconRegister)

{

iconIndex = iconRegister.registerIcon(MedivalWeapons.modid + "kamigreed:crystaline"+ this.getUnlocalizedName());

}

not sure if this works but it did before:

      public void updateIcons(IconRegister iconRegister)

{

iconIndex = iconRegister.registerIcon( "kamigreed:crystaline");

}

Here is the full path of where i put my png for my item,crystal sword:

....forge\mcp\src\minecraft\kamigreed\mod\modname\item

Textures go in:

 

/mcp/src/minecraft/mods/%MODNAME%/textures/%TYPE%/%FILENAME%.png

 

Where %MODNAME% and %FILENAME% are specified in the call to iconRegister.registerIcon(...)

 

e.g. for an item,

iconRegister.registerIcon("MyMod:MyItem")

 

will look for a texture at:

/mcp/src/minecraft/mods/MyMod/textures/items/MyItem.png

 

for a block, it will look in ...textures/blocks/ instead of ...textures/items/

 

BY: Draco18s http://www.minecraftforge.net/forum/index.php/topic,6972.0.html

 

(His is better)

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.