[2.2.7]
- updated to 1.21.2+
1.21.2+ has a large amount of internal entity rendering changes many of these changes will affect models, see my discord for a write-up I have done on the changes to expect and their impacts or this link
https://github.com/Traben-0/Entity_Model_Features/blob/master/.github/1.21.2%2B changes.md
- removed the setting that would attempt to revert emf models changed by other mods, as it had a lot of overhead with new changes
- the
creaking_transient
entity variant will try and usecreaking_transient.jem
first and will usecreaking.jem
otherwise - different boat types now use the format <wood_type>_<boat_type>.jem e.g.
oak_boat.jem
,oak_chest_boat.jem
, and the raftsbamboo_raft.jem
,bamboo_chest_raft.jem
this differs from EMF previously using their vanilla model id such asboat/oak.jem
baby_inner_armor.jem
andbaby_outer_armor.jem
have been added as fallbacks for the baby armor modelsplayer_cape.jem
andarrow.jem
have completely different implementations now, due to inclusion in vanilla renderingwind_charge
part names updated to reflect changes in OptiFine- the OptiFine limitation setting to always require a base model for variation has been set as disabled by default, as the limitation is inconsistent in OptiFine and has affected several packs working normally in OptiFine (the config name has changed so this will automatically update for you)
- fixed model textures prefixed with
./
&~/
breaking from a recent change - expanded the EMF API:
- added
int getCurrentEMFVariantOfModel(EntityModel<?>)
returns the current variant of the model or -1 if the model is not a custom EMF model. - added
boolean isModelAnimatedByEMF(EntityModel<?>)
returns true if the model has custom EMF animations. - added
boolean isModelCustomizedByEMF(EntityModel<?>)
returns true if the model is a custom EMF model. - added
boolean isModelPartCustomToEMF(ModelPart)
returns true if this model part is an extraneous part added by EMF, and does not represent any actual normal vanilla parts. - added
boolean isModelPartAnimatedByEMF(ModelPart)
returns true if this model part itself is animated by EMF, e.g"modePart.rx":"sin(age)"
.
- added
- fixed some per-entity model override settings from not applying correctly in game, such as modifying render mode per entity type.
- moved the box face UV height/width are zero warnings to only appear when model creation logging is enabled, as it got far too spammy with the many packs that don't care about this.