Modify Model Parts
Modifies (rotates, scales, transforms) an entity's individual model parts.
Type ID: appli:modify_model_parts
Fields
| Field | Type | Default | Description |
|---|---|---|---|
transformations |
Array of Model Part Transformations | An array of model part transformation objects. |
Examples
{
"type": "appli:modify_model_parts",
"transformations": [
{
"model_part": "head",
"type": "xscale",
"value": 1
},
{
"model_part": "head",
"type": "yscale",
"value": 1
},
{
"model_part": "head",
"type": "zscale",
"value": 1
},
{
"model_part": "hat",
"type": "xscale",
"value": 1
},
{
"model_part": "hat",
"type": "yscale",
"value": 1
},
{
"model_part": "hat",
"type": "zscale",
"value": 1
}
]
}
This example will make the entity's head hat layer twice as big. See Model Part Transformation for more details.