I'm making a custom ender dragon to replace the vanilla one.
Everything works for now BUT the bounding box. For some reason you can only hit it at the lowest point of the center and not the whole bounding box. This is a problem I have only with this entity and not my other ones even tho i followed the same method to make the bounding box.
this is what i wrote in my ModEntities class:
public static final EntityType<EndDragonEntity> END_DRAGON = Registry.register(Registries.ENTITY_TYPE,
new Identifier(EndPlusPlus.MOD_ID, "end_dragon"),
FabricEntityTypeBuilder.create(SpawnGroup.MONSTER, EndDragonEntity::new)
.dimensions(EntityDimensions.fixed(3f, 2f)).build());