Hello, I'm rather new to minecraft modding, and in my quest to get started, I appeared to have hit an unfortunate block (no pun intended).
I've successfully set up my mod so that the item I've added is registered and in the creative tab. The problem is that the texture isn't being applied. My Json looks like this:
Obviously my MODID and item name are replaced here. My png texture is titled the item name.
the json is in the folder src/main/resources/assets/<MODID>/models/item and the texture is in the folder src/main/resources/assets/<MODID>/textures/items. I have tried all permutations of having an s on the end of item, so I don't think that's the issue, but I'm not confident.
In game, when I try to look at the item, it has the pink and black texture with "<MODID>:<ITEMNAME>#inventory" written on it (the quotation marks are added, and the <MODID> and <ITEMNAME> are replaced with the real values. However, the item name is in all lower case.
Any help is appreciated.