deleteJoints
Remove multiple Joints in 3D models by specifying their identifiers using the 3D-MCP server. Streamlines joint management for efficient 3D content creation.
Instructions
Delete multiple Joints
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ids | Yes | Joint identifiers to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ids": {
"description": "Joint identifiers to delete",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"ids"
],
"type": "object"
}