Started by
ImCloud13
on
Topic category: Help with Minecraft modding (Java Edition)
Hello! I'd like to make a mob that can be spawned with randomly mixed and matched body parts. Is something like that possible?
Topic category: Help with Minecraft modding (Java Edition)
Hello! I'd like to make a mob that can be spawned with randomly mixed and matched body parts. Is something like that possible?
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.