combineMeshes
Merge multiple 3D meshes into one unified mesh with configurable options like material preservation and space alignment using 3D-MCP's standardized API.
Instructions
Combine multiple meshes into a single mesh
Input Schema
Name | Required | Description | Default |
---|---|---|---|
meshIds | Yes | IDs of meshes to combine | |
name | No | Name for the combined mesh | |
preserveSubMeshes | No | Whether to preserve material assignments as submeshes | |
worldSpace | No | Whether to combine in world space or local space |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"meshIds": {
"description": "IDs of meshes to combine",
"items": {
"type": "string"
},
"minItems": 2,
"type": "array"
},
"name": {
"description": "Name for the combined mesh",
"type": "string"
},
"preserveSubMeshes": {
"default": false,
"description": "Whether to preserve material assignments as submeshes",
"type": "boolean"
},
"worldSpace": {
"default": true,
"description": "Whether to combine in world space or local space",
"type": "boolean"
}
},
"required": [
"meshIds"
],
"type": "object"
}