Custom item icon for a 3D weapon

Started by Chiwi on

Topic category: Help with modding (Java Edition)

Last seen on 09:32, 27. Mar 2024
Joined Jun 2015
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Custom item icon for a 3D weapon

Hi, how could I add my custom item icon for inventory for the custom 3d weapons?? I made a json model for a sword but it appears in inventory as 3D item instead the item icon that I select in MCreator. What i should do???

Last seen on 16:56, 27. Mar 2024
Joined Mar 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
its normal. in mcreator the…
Fri, 04/17/2020 - 16:25

its normal. in mcreator the item appear as a 2D model. but in game its 3D. just make sure that u choose ur weapon model.

Last seen on 11:19, 2. Nov 2021
Joined Mar 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
First, make sure that all of…
Fri, 04/17/2020 - 18:33

First, make sure that all of your planned behavour of the item is finished (because you will have to lock that). Then head to the file tree and find: {your mod name}/Resources (Gradle)/assets/{your mod name}/textures/items and there add your texture. Then browse again for: {your mod name}/Resources (Gradle)/assets/{your mod name}/models/item/{your item name}.json and rewrite it to this: 

{
 "parent": "minecraft:item/generated",
 "textures": {
  "layer0": "{your mod name}:items/{your texture name}"
 }
}

If it does not work tehn please reply.

Last seen on 00:32, 30. Dec 2023
Joined Jan 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
It doesn't seem to work in…
Wed, 12/30/2020 - 10:25

It doesn't seem to work in new releases, there is a way to do it in 2020.5 too?