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

I am delving into the wondrous world of 1.8 modding and I am trying to figure out this new item rendering thing. I have everything set up, however, on launch I get this line. Does it just mean I have put the JSON file in the wrong place, or the texture or something?

Json file must be in assets/modid(ALL LOWERCASE!)/models/item(NOT ITEM!) or /block(NOT BLOCKS!). Check that. And also, when you register models, in path you must not write models/item, it must look something like modid:modelname...

BTW, have you even registered model???

  • Author

I have this:

 

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(specialHealth1, 0, new ModelResourceLocation(References.MODID + ":" + specialHealth1.getUnlocalizedName().substring(5), "inventory"));

 

My Json file is in assets/mymodid/models/item and my texture is under assets/mymodid/textures/items, my Json file looks like this:

 

{
    "parent": "builtin/generated",
    "textures": {
        "layer0": "mymodid:items/health_upgrade1"
    },
    "display": {
        "thirdperson": {
            "rotation": [ -90, 0, 0 ],
            "translation": [ 0, 1, -3 ],
            "scale": [ 0.55, 0.55, 0.55 ]
        },
        "firstperson": {
            "rotation": [ 0, -135, 25 ],
            "translation": [ 0, 4, 2 ],
            "scale": [ 1.7, 1.7, 1.7 ]
        }
    }
}

 

Then my client proxy:

 

public class ClientProxy extends CommonProxy 
{
public void render() 
{
	ItemRegistry.renderItems(); //method containing first bit...
}
}

 

Anything else I need to do?

  • Author

I have also registered my item like before, but is it important to have the item registered before being rendered or the other way around?

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.