Blender Addon for importing and exporting custom JSON mesh formats used in PART and Subpart (TTT) pipelines.
Supports:
type: "part"type: "subpart"(Tenkaichi Tag Team format)
- Triangulates mesh automatically
- Exports faces explicitly
- UV conversion to 0–255 integer range
- Vertex Groups exported as
id_bones - Weights aligned with
id_bonesorder
- Optional triangle strip ordering
- Sequential vertex export
- UV conversion to 0–255
- Vertex Groups exported as hex bone IDs
- Includes custom properties:
grosorunk
- Download the
.zipfile.
- Open Blender.
- Go to: Edit > Preferences > Add-ons
- Click Install...
- Select the addon file.
- Enable the addon.
File
Import
- Custom JSON Mesh
- Import PART JSON Mesh
- Import Subpart JSON Mesh
Export
- Custom JSON Mesh
- Export PART JSON Mesh
- Export Subpart JSON Mesh
{
"type": "part",
"id_bones": ["bone1", "bone2"],
"vertices": [
{
"id_v": "0",
"pos": [0.0, 1.0, 2.0],
"uv": [128, 200],
"weights": [1.0, "N/A"]
}
],
"faces": [
[0, 1, 2]
]
}{
"type": "subpart",
"grosor": [512.0, 512.0, 512.0],
"unk": 302007041,
"id_bones": ["0x01", "0x02"],
"vertices": [
{
"id_v": "0",
"pos": [0.0, 1.0, 2.0],
"uv": [128, 200],
"weights": [1.0, "N/A"]
}
]
}