updateUVMaps
Modify multiple UVMaps simultaneously by updating vertex coordinates, channel indices, and associated metadata in 3D models using the 3D-MCP server's standardized API interface.
Instructions
Update multiple UVMaps in a single operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes | Array of UVMaps to update with their IDs |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"items": {
"description": "Array of UVMaps to update with their IDs",
"items": {
"additionalProperties": false,
"properties": {
"channel": {
"description": "UV channel index",
"minimum": 0,
"type": "integer"
},
"coordinates": {
"description": "UV coordinates per vertex",
"items": {
"additionalProperties": false,
"properties": {
"u": {
"description": "U coordinate",
"type": "number"
},
"v": {
"description": "V coordinate",
"type": "number"
},
"vertexId": {
"description": "Vertex identifier",
"type": "string"
}
},
"required": [
"vertexId",
"u",
"v"
],
"type": "object"
},
"type": "array"
},
"ids": {
"description": "UVMap identifiers to update",
"items": {
"type": "string"
},
"type": "array"
},
"meshId": {
"description": "ID of the associated mesh",
"type": "string"
},
"metadata": {
"additionalProperties": {},
"description": "Additional tool-specific metadata",
"type": "object"
},
"name": {
"description": "Display name",
"type": "string"
}
},
"required": [
"ids"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}