updateFaces
Modify multiple 3D model faces simultaneously, updating properties like material, normals, and metadata, streamlining bulk edits within 3D creative workflows via the 3D-MCP server.
Instructions
Update multiple Faces in a single operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes | Array of Faces to update with their IDs |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"items": {
"description": "Array of Faces to update with their IDs",
"items": {
"additionalProperties": false,
"properties": {
"ids": {
"description": "Face identifiers to update",
"items": {
"type": "string"
},
"type": "array"
},
"materialId": {
"description": "Material ID for this specific face",
"type": "string"
},
"meshId": {
"description": "ID of the parent mesh",
"type": "string"
},
"metadata": {
"additionalProperties": {},
"description": "Additional tool-specific metadata",
"type": "object"
},
"name": {
"description": "Display name",
"type": "string"
},
"normal": {
"description": "Face normal [nx, ny, nz]",
"items": {
"type": "number"
},
"maxItems": 3,
"minItems": 3,
"type": "array"
},
"selected": {
"default": false,
"description": "Selection state of the face",
"type": "boolean"
},
"smoothingGroup": {
"description": "Smoothing group identifier",
"minimum": 0,
"type": "integer"
},
"vertexIds": {
"description": "IDs of vertices defining the face",
"items": {
"type": "string"
},
"minItems": 3,
"type": "array"
}
},
"required": [
"ids"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}