deleteMaterials
Remove multiple materials from 3D models using specified identifiers. Integrates with the 3D-MCP server to streamline material deletion in Digital Content Creation workflows.
Instructions
Delete multiple Materials
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ids | Yes | Material identifiers to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ids": {
"description": "Material identifiers to delete",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"ids"
],
"type": "object"
}