deleteKeyframes
Remove multiple keyframes in 3D creative workflows using specific identifiers, enabling efficient timeline management and streamlined animation adjustments through the 3D-MCP server.
Instructions
Delete multiple Keyframes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ids | Yes | Keyframe identifiers to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ids": {
"description": "Keyframe identifiers to delete",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"ids"
],
"type": "object"
}