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 have an item with over 20 different subtypes, and counting. Each of them has a different texture (it's not as bad as it sounds - bear with me). I could pretty easily draw the texture for each of them and add them to the resources folder, but I intend on eventually having several hundreds of them, and I'm no good with drawing programs. Sure, I can make a reasonable texture, but not for hundreds of them.

 

Now, my item is a test tube, and the subtypes are its contents. So I could theoretically have one texture for an empty tube, and just add the contents' colors at runtime. I know how to do this, but I don't know how I would assign them to the items. Can I do this, and how?

If all that changes is the colour of the contents, use a model that extends

builtin/generated

(e.g.

item/generated

or

item/handheld

) with the tube texture as one layer and the white contents texture as another.

 

To colour the contents at runtime, you need to create an implementation of

IItemColor

and register it for your

Item

by calling

ItemColors#registerItemColorHandler

on

Minecraft#getItemColors

in init.

 

IItemColor#getColorFromItemstack

gives you the

ItemStack

and the tint index, which tells you the part of the model that's being coloured. For models that extend

builtin/generated

, the tint index is the layer index (e.g.

"layer0"

is tint index 0). For the contents layer, return the colour in

0xRRGGBB

format (you may want to store the colour of each contents type); for the tube layer, return -1 (white).

 

If the contents actually have separate textures, you'll need to generate the textures and model at runtime. See

ModelDynBucket

for an example of this.

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.

Hi

 

This example project has something very similar to what you've described

https://github.com/TheGreyGhost/MinecraftByExample

See mbe11

 

It's also possible to dynamically create textures, give them a ResourceLocation, and assign them to your item (I last tested that in 1.8 but I think it's still the same). 

Vanilla examples are with DynamicTexture and in particular in MapItemRenderer for generating a texture, which you can then stitch into the texture sheet using TextureStitchEvent.  mbe50 has an example of stitching, used for Particles.

 

-TGG

  • Author

Thank Choonster, this did the job. Also, thanks GreyGhost for plugging the MBE entry - I didn't need it here, but I'm sure it will help a lot of other people.

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.