Creating a mob with multiple variations of each body part

Started by ImCloud13 on

Topic category: Help with modding (Java Edition)

Last seen on 19:45, 8. Jan 2024
Joined Nov 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Creating a mob with multiple variations of each body part

Hello! I'd like to make a mob that can be spawned with randomly mixed and matched body parts. Is something like that possible?

Last seen on 00:31, 28. Aug 2024
Joined Sep 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You would have to create a…
Thu, 01/18/2024 - 00:51

You would have to create a texture for each and every combination.

 

The formula for the number of textures would be the number of variants for each part, (5 in this example), to the power of the number of parts, (6 in this example), and thats the number of textures you would need, (so 5 to the power of 6/5^6).

 

For example, say you have 5 heads, 5 bodies, 5 left arms, 5 right arms, 5 left legs, and 5 right legs, you would need to create 15625.