3D-MCP

by team-plask
Verified

createBlendShapes

Generate multiple BlendShapes by defining vertex deltas and metadata for 3D meshes, enabling precise control over deformations and animations in 3D models.

Instructions

Create multiple BlendShapes

Input Schema

NameRequiredDescriptionDefault
itemsYesArray of BlendShapes to create

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "items": { "description": "Array of BlendShapes to create", "items": { "additionalProperties": false, "properties": { "combineMethod": { "default": "additive", "description": "How this shape combines with others", "enum": [ "average", "additive" ], "type": "string" }, "deltas": { "description": "Per-vertex deformation deltas", "items": { "additionalProperties": false, "properties": { "normalDelta": { "description": "Normal vector offset", "items": { "$ref": "#/properties/items/items/properties/deltas/items/properties/positionDelta/items" }, "maxItems": 3, "minItems": 3, "type": "array" }, "positionDelta": { "description": "Position offset", "items": { "type": "number" }, "maxItems": 3, "minItems": 3, "type": "array" }, "tangentDelta": { "$ref": "#/properties/items/items/properties/deltas/items/properties/normalDelta", "description": "Tangent vector offset" }, "vertexIndex": { "description": "Vertex index", "minimum": 0, "type": "integer" } }, "required": [ "vertexIndex", "positionDelta" ], "type": "object" }, "type": "array" }, "meshId": { "description": "ID of the target mesh", "type": "string" }, "metadata": { "additionalProperties": {}, "description": "Additional tool-specific metadata", "type": "object" }, "name": { "description": "Display name", "type": "string" }, "weight": { "default": 0, "description": "Current blend shape weight", "maximum": 1, "minimum": 0, "type": "number" } }, "required": [ "name", "meshId", "deltas" ], "type": "object" }, "type": "array" } }, "required": [ "items" ], "type": "object" }

You must be authenticated.

Other Tools from 3D-MCP

Related Tools

ID: q8f72q5q5q