
Custom Skins - Player Appearance Personalization
This mod opens up new possibilities for customizing your character in Minecraft. All necessary information for the mod's operation is encoded directly in the skin texture that you upload to Mojang's servers. This ensures stable operation without dependence on external servers.
Available Features
• Ear Settings - ability to enable or disable ear display on the character model • Cape and Elytra Customization - replacement of standard cape and elytra textures with custom ones, including support for data URLs
Planned Improvements
• Additional Elements - possibility to add new details to the character model • Extended Textures - additional possibilities for texturing elements • Block and Item Textures - ability to use block and item textures for personalization
Creating a Custom Skin
Currently, the process requires some technical knowledge since this is a preliminary version of the mod. To create a skin, you need to run the mod's JAR file through Java (by double-clicking or using the command java -jar CustomSkins.jar). In the interface, select the source skin and specify the JSON configuration with the description of desired changes. The mod will automatically create a modified version of the skin next to the original, which can then be uploaded to Mojang's servers.
JSON Configuration Format
You can specify only those parameters that you want to change. If you only need ears, you can remove the lines related to cape and elytra. The cape texture is applied to elytra by default!
{
"overrides":{
"ears": [true | false],
"cape": "URL/Data URL",
"elytra": "URL/Data URL"
}
}