Skip to main content

Configuration

info

In the current version (Beta 2.0.0), You're going to need a 3rd party text editor app (like notepad) to edit your config.

Skinmatics config file is located at <minecraft>/config/skinmatics/config.json5. The file also contain comments if you don't understand what it's for.

{
// Internal Config Version
"config": 0,
// Skinmatics Configuration
"data": {
// Selected avatar to be used (string, relative to <minecraft>/config/skinmatics/avatars)
"avatar": "",
// Update range of active avatar in blocks (int, min 0)
"updateRange": 64,
// Force avatars to have strongerEmissive true even though it's off (boolean)
"forceStrongerEmissive": false,
// Configure GUI
"gui": {
// The background color of Skinmatics GUIs (string, hex color code)
"background": "000000",
/*
* The foreground color of Skinmatics GUIs
* Usually for text color, hover color, and ui texture color (string, hex color code)
*/
"foreground": "ffffff",
/*
* The accent color of Skinmatics GUIs
* Usually for focused button color (string, hex color code)
*/
"accent": "e88a36",
// Amount of visible avatar cards on a screen horizontally (int)
"horizontalProfiles": 5,
// Amount of visible avatar cards on a screen vertically (int)
"verticalProfiles": 3
},
// Configure paper doll
"paperDoll": {
// Enable paper doll (boolean)
"visible": true,
// Whether paper doll should always be visible (boolean)
"isAlwaysVisible": false,
/*
* The amount of ticks the paper doll visible for (boolean)
* Disabled if isAlwaysVisible is true
*/
"visibleTicks": 20,
// Whether paper doll should hide equipments (items and armors) (boolean)
"hideEquipments": false,
// The scale of the paper doll (float)
"scale": 24,
// The screen alignment of the paper doll (float)
"screenAlignment": [0.0, 0.0],
// The model (anchor) alignment of the paper doll (float)
"modelAlignment": [0.0, 0.0],
// The offset of the paper doll (in pixels) (float)
"offset": [16.0, 16.0]
}
}
}