Started by
Greeper36
on
Topic category: Help with Minecraft modding (Java Edition)
If you've made a breedable mob and you tested it but the baby looked the same as the adult, there's two ways you can do it, if you want the baby model to have a big head like other minecraft mobs, then you need to make two models in blockbench, baby and adult. But if you want an easier way, just create a new procedure and put in the code of:
if ((entity/target) is a child) {
return number(0.5)
}
return number(1)
(if that's to hard to understand):
https://www.imghippo.com/i/ucfdj1724303792.png (sorry if this link doesn't work)
Then you'll find that in the entity there is a thing that says: "entity visual scale" and "entity bounding box scale" with a box that says "Fixed:" your going to want to change "Fixed" to the new procedure you've made