Jump to content

Recommended Posts

Posted

I've found a few snippets and questions regarding the programmatic change of item icons on runtime, but they always only showed a very tiny bit of the action. I know there has to be an override in the json file, but not if the new icon also has to have a json file or not. I've seen a bit of the apply method in the source, but don't know exactly how it works either.

 

So from all the stuff I've stitched together, I can't make it work properly ...

 

Is there a tutorial explaining the whole shebang somewhere? That would be highly appreciated :)

running minecraft on Mac OS X - Sierra --- creating code since 1986 ... --- मेरा दिल भारतवासी है!

width=289 height=100http://www.arno-saxena.de/pictures/chococraft/banner_signature.png[/img]

Posted

Items have models, not icons.

 

What exactly do you want the item's model to be controlled by?

 

For metadata-based models, use

ModelLoader.setCustomModelResourceLocation

in preInit to set a model for each metadata value.

 

For models based on some other aspect of the

ItemStack

, use

ModelLoader.setCustomMeshDefinition

in preInit to set an

ItemMeshDefinition

for the

Item

; this allows you to map an

ItemStack

to an arbitrary

ModelResourceLocation

. You must tell Minecraft to load each possible model by calling

ModelBakery.registerItemVariants

.

 

For models based on some aspect of the entity holding the item or the world it's in, specify overrides in the item model itself. These can use any

IItemPropertyGetter

registered for the

Item

(

Item#addPropertyOverride

) to specify another item model.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

ok, models :)

 

So, my item stack will have a status  (example: click once for source block type, click second time for target block type, click third time for start block and fourth time for end block. After fourth click in the area marked by the last two clicks, the second clicked block types will be exchanged for the first clicked block type ... after each click the status will change)

 

Anyway, this calls for either the meta data solution (then I have to get the status into the meta data) or the item variants solution, because the status is already an aspect of the ItemStack.

 

For the later solution. I'll be calling ModelBakery and register all models. Also I have to set custom mesh definitions for the different itemStack status... Now I have to confess I don't know what a MeshDefinition is and how to get the stack status represented in the MeshDefinition.

running minecraft on Mac OS X - Sierra --- creating code since 1986 ... --- मेरा दिल भारतवासी है!

width=289 height=100http://www.arno-saxena.de/pictures/chococraft/banner_signature.png[/img]

Posted

ItemMeshDefinition

is an interface with a single method:

ModelResourceLocation getModelLocation(ItemStack stack)

. This receives an

ItemStack

and returns a

ModelResourceLocation

pointing to the model that should be used for the item. How it determines which

ModelResourceLocation

to use is completely up to you.

 

I have an explanation of the model loading process and how

ModelResourceLocation

s are mapped to models here.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

And some info here discussing using blockstate json files to define item variants (rather than a bunch of single "variant" models vanilla uses).

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

thanks Draco for the the variant suggestion, will try this definitely as soon as I've understand the mesh version :)

 

As for the mesh version, I have added a mesh class like this

 

 

  Reveal hidden contents

 

 

also I've added models for all variations.

 

Further I've registered the variations in

 

@EventHandler
public void init(FMLInitializationEvent event)

 

this way:

 

ModelBakery.registerItemVariants(BuildHelperMod.exchangeWand, 
  new ModelResourceLocation(BuildHelperMod.MODID + ":" + BuildHelperMod.exchangeWand.getUnlocalizedName().substring(5), "inventory"),
  new ModelResourceLocation(BuildHelperMod.MODID + ":" + BuildHelperMod.exchangeWand.getUnlocalizedName().substring(5) + "_c1", "inventory"),
  new ModelResourceLocation(BuildHelperMod.MODID + ":" + BuildHelperMod.exchangeWand.getUnlocalizedName().substring(5) + "_c2", "inventory"),
  new ModelResourceLocation(BuildHelperMod.MODID + ":" + BuildHelperMod.exchangeWand.getUnlocalizedName().substring(5) + "_c3", "inventory")
);
ModelLoader.setCustomMeshDefinition(BuildHelperMod.exchangeWand, new ItemExchangeWandMeshDefinition());

 

I've tried once without any additional model registering and once (a rather desperate attempt :D)

 

 

with the additional:

this.registerModel(BuildHelperMod.exchangeWand);

...

private void registerModel(Item item)
{
    Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(
        item, 
        0, 
        new ModelResourceLocation(BuildHelperMod.MODID + ":" 
          + item.getUnlocalizedName().substring(5), "inventory"));		
}

 

The try without gave me the pink/black block showing the models are not installed or rather not connected to my item, the version with the additional registerModel call gave me the single original model without change. A debug break point in the getModelLocation Method of the ItemExchangeWandMeshDefinition class was not reached, so I presume the method is never called. Thus I further presume I have not done the registering the right way :)

 

The 'status' field of the item is definitely changed, since I'm using this status for my functionality and that is working as expected ...

running minecraft on Mac OS X - Sierra --- creating code since 1986 ... --- मेरा दिल भारतवासी है!

width=289 height=100http://www.arno-saxena.de/pictures/chococraft/banner_signature.png[/img]

Posted

if(stack.getItem().getClass() == BuildHelperMod.exchangeWand.getClass())

This is unnecessary,

stack

will always be an

ItemStack

of the

Item

the

ItemMeshDefinition

was registered to. Also,

Items

are singletons, you can compare directly with stack.getItem() == BuildHelperMod.exchangeWand. The only instance of an

Item

that will ever exist ingame is the one registered through

GameRegistry

.

 

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

This is deprecated, use

ModelLoader#setCustomModelResourceLocation()

. Refer here for why. Get rid of getUnlocalizedName().substring(5) too, use

IForgeRegistryEntry#getRegistryName

(

IForgeRegistryEntry

is implemented by both

Block

and

Item

). The unlocalised name should not determine the registry name, unlocalised names can change, registry names should not.

 

In addition, post the console log, it may have useful information.

 

 

 

Posted

Removed the getClass and testing for the item instance itself before the cast.

 

Also removed the getUnlocalizedName and using the getRegistryName instead. This change is working fine.

 

But what I couldn't manage to get working correctly is the ModelLoader#setCustomModelResourceLocation()

 

this is working:

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(
  item,  0, new ModelResourceLocation(item.getRegistryName(), "inventory"));

 

but this is not:

 

ModelLoader.setCustomModelResourceLocation(
  item,  0, new ModelResourceLocation(item.getRegistryName(), "inventory"));

 

can you tell me why not?

 

 

running minecraft on Mac OS X - Sierra --- creating code since 1986 ... --- मेरा दिल भारतवासी है!

width=289 height=100http://www.arno-saxena.de/pictures/chococraft/banner_signature.png[/img]

Posted

ModelLoader must be called during PreInit not Init.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

thanks :) that does the trick.

 

Now I'm registering the models with this in the preInit phase:

private void registerModel(Item item)
{
  ModelLoader.setCustomModelResourceLocation(item, 0, 
    new ModelResourceLocation(item.getRegistryName(), "inventory"));		
}

 

But I still haven't managed to get the model variations running.

 

I'm using ModelBakery.registerItemVariants(...) to register the Model variants (now with the getRegistryName method, instead of the unlocalized stuff) and ModelLoader.setCustomMeshDefinition(...) for registering a custom mesh definition class as described in my earlier post (also changed the unlocalized stuff in the mesh definition to the getRegistryName method). But it is not working yet. If I use it additionally to the setCustomModelResourceLocation method, I'll see the standard model in the game without change. When I only use the registerItemVariants method, I'll only see the pink/black placeholder. (btw, stack damage is set according to my status field in the items onItemUse method)

 

So my current questions are

- when do I have to use the above mentioned methods, in preInit or Init?

- do I have to use the registerItemVariants instead or additional to the standard registry?

 

and of course ... what am I doing wrong??? :)

running minecraft on Mac OS X - Sierra --- creating code since 1986 ... --- मेरा दिल भारतवासी है!

width=289 height=100http://www.arno-saxena.de/pictures/chococraft/banner_signature.png[/img]

Posted

btw, as requested, the console log:

 

 

  Reveal hidden contents

 

running minecraft on Mac OS X - Sierra --- creating code since 1986 ... --- मेरा दिल भारतवासी है!

width=289 height=100http://www.arno-saxena.de/pictures/chococraft/banner_signature.png[/img]

Posted

Please post the latest model registration code for the exchange wand.

 

In future please post the FML log (logs/fml-client-latest.log) rather than the console output, it contains more potentially useful information.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

here my client proxy class with the registry methods.

 

 

  Reveal hidden contents

 

 

registerModels will be called in preInit, while registerModelVariants I'm calling in init phase.

 

and here the mesh definition class

 

  Reveal hidden contents

 

 

 

and fml-client-latest.log:

 

  Reveal hidden contents

 

 

The strange thing is, while in eclipse debugging, the model doesn't change. If I build the mod and add it to my regular minecraft game, the models will change, but the new models are the pink/black ones ...

 

I have registered the following models with separated json and png files:

exchangewand

exchangewand_c1

exchangewand_c2

exchangewand_c3

 

or do I need one json with every variation?

running minecraft on Mac OS X - Sierra --- creating code since 1986 ... --- मेरा दिल भारतवासी है!

width=289 height=100http://www.arno-saxena.de/pictures/chococraft/banner_signature.png[/img]

Posted
ModelLoader.setCustomMeshDefinition

must be called in preInit, not init.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Looking for the best Temu coupon code $100 off? You’re in the right place! We’ve got the ultimate deal that helps you save big on your favorite items. Our exclusive ACS670886 Temu coupon code is perfect for shoppers in the USA, Canada, and Europe. Whether you're a new or existing customer, this code ensures you get maximum benefits. By using the Temu coupon $100 off, you can unlock exciting savings on Temu’s vast collection. Don’t miss this chance to claim your Temu 100 off coupon code today! What Is The Coupon Code For Temu $100 Off? Both new and existing customers can enjoy incredible benefits with our Temu coupon $100 off on the Temu app and website. This $100 off Temu coupon ensures huge savings for everyone! ACS670886 – Get a flat $100 off on selected purchases. ACS670886 – Unlock a $100 coupon pack for multiple uses. ACS670886 – Enjoy a $100 flat discount if you're a new customer. ACS670886 – Existing customers can claim an extra $100 promo code. ACS670886 – This $100 coupon is valid for shoppers in the USA and Canada. Temu Coupon Code $100 Off For New Users In 2025 New users can maximize their savings by applying our Temu coupon $100 off on the Temu app. This Temu coupon code $100 off unlocks amazing deals for first-time shoppers. ACS670886 – Get a flat $100 discount for new users. ACS670886 – Receive a $100 coupon bundle as a welcome offer. ACS670886 – Unlock up to $100 in coupons for multiple uses. ACS670886 – Enjoy free shipping to 68 countries. ACS670886 – Get an extra 30% off on any purchase as a first-time user. How To Redeem The Temu Coupon $100 Off For New Customers? Using the Temu $100 coupon is easy! Follow these steps to redeem your Temu $100 off coupon code for new users: Sign up on the Temu app or website. Browse and add your favorite items to the cart. Enter ACS670886 at checkout. See the $100 discount applied instantly. Complete your purchase and enjoy your savings! Temu Coupon $100 Off For Existing Customers Existing customers can also benefit from our exclusive Temu $100 coupon codes for existing users. Use this Temu coupon $100 off for existing customers free shipping deal and save more! ACS670886 – Get an extra $100 discount for existing users. ACS670886 – Enjoy a $100 coupon bundle for multiple purchases. ACS670886 – Receive a free gift with express shipping across the USA/Canada. ACS670886 – Grab an extra 30% off on top of existing discounts. ACS670886 – Avail free shipping to 68 countries. How To Use The Temu Coupon Code $100 Off For Existing Customers? Redeeming your Temu coupon code $100 off as an existing user is simple. Just follow these steps: Log in to your Temu account. Select your desired products and add them to your cart. Apply ACS670886 at checkout. Your Temu coupon $100 off code will be applied automatically. Confirm your order and enjoy massive savings! Latest Temu Coupon $100 Off First Order First-time buyers get the best deals with our Temu coupon code $100 off first order. This Temu coupon code first order ensures maximum savings. ACS670886 – Flat $100 discount for the first order. ACS670886 – Special $100 Temu coupon code for new customers. ACS670886 – Get up to $100 in coupons for multiple uses. ACS670886 – Free shipping to 68 countries. ACS670886 – Extra 30% off on any first-time purchase. How To Find The Temu Coupon Code $100 Off? Finding a Temu coupon $100 off is easy! Check out the Temu coupon $100 off Reddit section or follow these tips: Subscribe to the Temu newsletter for exclusive deals. Follow Temu’s official social media pages for the latest updates. Visit trusted coupon sites for verified and working codes. Is Temu $100 Off Coupon Legit? Yes, our Temu $100 Off Coupon Legit and verified! Wondering if the Temu 100 off coupon legit? Here’s why: The ACS670886 code is officially tested and confirmed. Valid for all customers in the USA, Canada, and Europe. No expiration date—use it anytime! How Does Temu $100 Off Coupon Work? The Temu coupon code $100 off first-time user works instantly upon applying at checkout. Simply enter the Temu coupon codes 100 off, and the discount is automatically deducted. How To Earn Temu $100 Coupons As A New Customer? To earn a Temu coupon code $100 off, sign up on Temu, make your first purchase, and refer friends. This 100 off Temu coupon code can be unlocked through special promotions. What Are The Advantages Of Using The Temu Coupon $100 Off? $100 discount on the first order $100 coupon bundle for multiple uses 70% discount on popular items Extra 30% off for existing customers Up to 90% off on selected products Free gifts for new users Free delivery to 68 countries Temu $100 Discount Code And Free Gift For New And Existing Customers Enjoy the Temu $100 off coupon code and get amazing benefits! Our $100 off Temu coupon code ensures huge savings. ACS670886 – $100 discount for the first order. ACS670886 – Extra 30% off on any item. ACS670886 – Free gift for new Temu users. ACS670886 – Up to 70% discount on all Temu items. ACS670886 – Free shipping in 68 countries including the USA and UK. Final Note: Use The Latest Temu Coupon Code $100 Off Using the Temu coupon code $100 off is the smartest way to save on Temu! Don’t wait—grab your discount now. Our Temu coupon $100 off is available for all customers, ensuring maximum savings. Get yours today! FAQs Of Temu $100 Off Coupon Q: How can I get the Temu $100 off coupon? A: Use code ACS670886 at checkout to claim your $100 discount. Q: Is the Temu $100 coupon valid for existing customers? A: Yes! Existing users can also apply ACS670886 and enjoy savings. Q: Does the Temu $100 off coupon have an expiration date? A: No, ACS670886 is valid indefinitely. Q: Can I use the Temu coupon on multiple orders? A: Yes! ACS670886 allows multiple redemptions. Q: Is the Temu $100 coupon applicable worldwide? A: Yes, it’s valid in the USA, Canada, Europe, and 68 other countries.
    • I tried both Vanilla and Optfine like you said, and both gave the same result. So I believe the issue is most likely with Minecraft in general and not Forge
    • https://pastebin.com/xWy0mWXA Like I said Modded Java Edition 1.12.2 using Forge Version 14.23.5.2859 Oh yeah and Exit Code: 1  
    • I love GTA V — Minecraft feels like a kids' game to me.
  • Topics

×
×
  • Create New...

Important Information

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