Support for MinecraftCapes mod
Describe your suggestion
Hi, I am the dev of MinecraftCapes. https://modrinth.com/mod/minecraftcapes
We've had multiple people try and use both our mods but your mod causes the capes to not show.
Would you be able to add support?
Hello I'm a big fan of skin shuffle and Ive been using it for some time now.
Like James stated multiple people tried to use both mods but skin shuffle has unfortunately no support.
Me and multiple people would appreciate if you added support for minecraft capes to your mod.
Describe your suggestion
Hi, I am the dev of MinecraftCapes. modrinth.com/mod/minecraftcapes
We've had multiple people try and use both our mods but your mod causes the capes to not show.
Would you be able to add support?
Hi, where about do the capes not show? If you mean in the skinshuffle screen, see #140 - if not, please provide some more info, like if it's in world etc.
Hi,
From my understanding capes don't show in game at all.
I can download the mod and provide some exact instructions later today or you can try yourself if available.
So when using the mod only my Minecraft official cape is shown
Compared to not using SkinShuffle.
I would need the mineskin mod to provide an API that;
- Allows other mods to get the currently registered MinecraftCapes cape texture id (
Identifier/ResourceLocation)
Would this be possible?
The mod being closed source doesn't really help me here either.
The below should be helpful to you.
net.minecraftcapes.player.PlayerHandler
PlayerHandler.getCapeLocation() // Cape/Elytra texture or null if no texture
You can do the below where you configure presets. Obviously you'll need to check if the MCCapes mod is loaded first. I can look into a PR
//If we have a cape, lets load it
if(MinecraftCapesConfig.isCapeVisible() && playerHandler.getCapeLocation() != null) {
capeTexture = playerHandler.getCapeLocation();
elytraTexture = playerHandler.getCapeLocation();
}
//Return new player skin
PlayerSkin newPlayerSkin = new PlayerSkin(
playerSkin.texture(), playerSkin.textureUrl(),
capeTexture, elytraTexture,
playerSkin.model(), playerSkin.secure()
);
Will be available in the next release.
MinecraftCapes straight up crashes the game now. (mod version: 2.9.5, game version: 1.21.8)
MinecraftCapes straight up crashes the game now. (mod version: 2.9.5, game version: 1.21.8)
Came here to mention this aswell