splitMeshes
Split 3D meshes into separate objects by material, unconnected parts, or selection. Use customizable naming patterns for organized results in 3D-MCP workflows.
Instructions
Split meshes into separate objects
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes | Meshes to split |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"items": {
"description": "Meshes to split",
"items": {
"additionalProperties": false,
"properties": {
"meshId": {
"description": "Mesh identifier",
"type": "string"
},
"method": {
"description": "Splitting method",
"enum": [
"byMaterial",
"byUnconnected",
"bySelection"
],
"type": "string"
},
"namePattern": {
"default": "{original}_part_{index}",
"description": "Naming pattern for split results",
"type": "string"
}
},
"required": [
"meshId",
"method"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}