updateEdges
Modify multiple edges in a 3D model simultaneously by updating properties like crease weight, visibility, sharpness, and metadata. Uses the 3D-MCP server for efficient batch operations in digital content creation.
Instructions
Update multiple Edges in a single operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes | Array of Edges to update with their IDs |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"items": {
"description": "Array of Edges to update with their IDs",
"items": {
"additionalProperties": false,
"properties": {
"crease": {
"default": 0,
"description": "Crease weight for subdivision",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"hidden": {
"default": false,
"description": "Whether the edge is hidden",
"type": "boolean"
},
"ids": {
"description": "Edge identifiers to update",
"items": {
"type": "string"
},
"type": "array"
},
"meshId": {
"description": "ID of the parent mesh",
"type": "string"
},
"metadata": {
"additionalProperties": {},
"description": "Additional tool-specific metadata",
"type": "object"
},
"name": {
"description": "Display name",
"type": "string"
},
"selected": {
"default": false,
"description": "Selection state of the edge",
"type": "boolean"
},
"sharp": {
"default": false,
"description": "Whether the edge is marked as sharp",
"type": "boolean"
},
"vertexIds": {
"description": "IDs of vertices defining the edge",
"items": [
{
"type": "string"
},
{
"type": "string"
}
],
"maxItems": 2,
"minItems": 2,
"type": "array"
}
},
"required": [
"ids"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}