SkinPort

SkinPort

109k Downloads

Modification conflict.

Khikki opened this issue ยท 5 comments

commented

Hello, as I understand it, several modifications conflict with 'SkinPort', such as 'Twilight Forest', 'Headcrumbs', upd 'Botania'.

Twilight Forest - Giant Miner.
2020-06-04_21 46 50

Headcrumbs - Heads.
2020-06-04_21 48 08

Headcrumbs - Human.
2020-06-04_21 48 25

Botania - Gaia Guardian's and Head.
2020-06-05_03 04 44

I understand that most likely it will have to patch the modifications themselves, do you have any ideas how to fix it?

commented

Regarding TwilightForest (and probably Headcrumbs) the issue is being caused by the mods itself
Here is an extract from the render class for Giant

public RenderTFGiant() {
    super(new ModelBiped(), 0.625F);
    this.textureLoc = new ResourceLocation("textures/entity/steve.png");
}

As you see it uses vanilla's model to render which grabs the unsupported texture.
But I actually found out that you can fix it using RenderLivingEvent.Pre
Here is the Gist, not the cleaneast solution and could potentially break some other mods.
https://gist.github.com/H4kt/8cf101aced9fa39b4b332da6e71a1400

But somehow it keeps breaking the rendering of held item
image

commented

The soution for skulls might be very similar to this one

commented

Sorry, I don't really want to patch this mod for every incompatibilities...
This mod is licensed under MIT, please feel free to fork it, and make your own patches.

commented

Having a lot of trouble with it too.

commented

These comments will be noted for a fix in Et Futurum Requiem's Alex model.