Animated-Java / animated-java

A Blockbench plugin that makes complex animation a breeze in Minecraft: Java Edition.
Other
159 stars 26 forks source link

Simplify Bone Configs in Exported JSON #227

Closed learliet closed 3 months ago

learliet commented 3 months ago

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
    }
}