deleteIKChains
Remove specified Inverse Kinematics (IK) chains from 3D models using identifiers. Part of the 3D-MCP server, this tool streamlines the cleanup process in 3D content creation workflows.
Instructions
Delete multiple IKChains
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ids | Yes | IKChain identifiers to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ids": {
"description": "IKChain identifiers to delete",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"ids"
],
"type": "object"
}