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

Hello everyone, 

 

I was working on a slab block with Metadata and I got this wierd bug where the sub-block with Metadata #0 use the Default Purple/Black Texture for Inventory Render. It's not Model related since my block does render on the map and works properly if I switch the block to a different Metadata. Anyone ever met this kind of bug?

 

Cordially.

Edited by Asiratlan

1 minute ago, Asiratlan said:

Hello everyone, 

 

I was working on a slab block with Metadata and I got this wierd bug where the sub-block with Metadata #0 use the Default Purple/Black Texture for Inventory Render. It's not Model related since my block does render on the map and works properly if I switch the block to a different Metadata. Anyone ever met this kind of bug?

 

Cordially.

Do you have an Item model for it?

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

  • Author
1 hour ago, Animefan8888 said:

Do you have an Item model for it?

Like I said Models (both Item and Block) works If I swap Metadata #0 with any other Metadata the block will render properly.  The bug seems to only to happen specifically to Metadata #0 and not to the block itself.

1 hour ago, Asiratlan said:

Like I said Models (both Item and Block) works If I swap Metadata #0 with any other Metadata the block will render properly.  The bug seems to only to happen specifically to Metadata #0 and not to the block itself.

Then the problem could still be the Item Model for metadata 1. Also we can't help without any code or the models, if we tried it would be a bunch of shots in the dark.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

  • Author
15 minutes ago, Animefan8888 said:

Then the problem could still be the Item Model for metadata 1. Also we can't help without any code or the models, if we tried it would be a bunch of shots in the dark.

Here's the Item Model, Block Model and BlockState File. I also put in comment here the code of the ModelBakeryRegistration. 

 

 public static void registerRenderMeta(Block block, int meta, String name) {
        Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(Item.getItemFromBlock(block), meta,
                new ModelResourceLocation(block.getRegistryName() + "_" + name, "inventory"));
        ModelBakery.registerItemVariants(Item.getItemFromBlock(block),
                new ModelResourceLocation(block.getRegistryName() + "_" + name, "inventory"));
    }

This method get called for each subItem from 0 to 7 in that specific case. 

wool_slab.json

wool_slab_white.json

wool_slab_half_white.json

Don't use the ItemModelMesher instead use ModelLoader.setCustomModelResourceLocation, and call in in preInit or the ModelRegistryEvent.

Edited by Animefan8888

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

  • Author

Edit: Seems like that new NullPointer is on my fault ^^. I will fix this and come back if anything happens

Edited by Asiratlan
Missclick

  • Author

After using your new method I found out that my ItemSlab was actually using a RegisterRender after the Blocks so It was overwritting the Metadata #0. Thanks a lot of your help :D

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.