Skip to content

Simplify Bone Configs in Exported JSON #227

@learliet

Description

@learliet

The JSON format could be improved by combining the default variant with the other variants, as shown below.

OLD

"configs": {
	"variants": {
		"c3fa5074-1ee5-5c3b-a641-d575dcc648ff": {
			"override_brightness": true,
			"brightness_override": 10,
			"inherit_settings": true
		}
	},
	"default": {
		"enchanted": true,
		"inherit_settings": true
	}
}

NEW

"configs": {
	"default_uuid_here": {
		"enchanted": true,
		"inherit_settings": true
	}
	"c3fa5074-1ee5-5c3b-a641-d575dcc648ff": {
		"override_brightness": true,
		"brightness_override": 10,
		"inherit_settings": true
	}
}

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions