How to make a baby version of a breedable mob

Started by Greeper36 on

Topic category: Help with modding (Java Edition)

Last seen on 22:43, 13. Sep 2024
Joined Aug 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How to make a baby version of a breedable mob

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)

 

Last seen on 22:43, 13. Sep 2024
Joined Aug 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Then you'll find that in the…
Thu, 08/22/2024 - 05:22

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