createDrivers
Generate and manage multiple drivers in 3D creative software using mathematical expressions or custom code, linking node properties dynamically for automated workflows within the 3D-MCP ecosystem.
Instructions
Create multiple Drivers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes | Array of Drivers to create |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"items": {
"description": "Array of Drivers to create",
"items": {
"additionalProperties": false,
"properties": {
"expression": {
"description": "Mathematical expression or code",
"type": "string"
},
"metadata": {
"additionalProperties": {},
"description": "Additional tool-specific metadata",
"type": "object"
},
"name": {
"description": "Display name",
"type": "string"
},
"targetNodeId": {
"description": "Node to drive",
"type": "string"
},
"targetPath": {
"description": "Property path on target to drive",
"type": "string"
},
"variables": {
"default": [],
"description": "Input variables for the expression",
"items": {
"additionalProperties": false,
"properties": {
"name": {
"description": "Variable name in expression",
"type": "string"
},
"sourceNodeId": {
"description": "Node ID to read from",
"type": "string"
},
"sourcePath": {
"description": "Property path to read from",
"type": "string"
},
"transform": {
"description": "Transform to apply to input",
"type": "string"
}
},
"required": [
"name",
"sourceNodeId",
"sourcePath"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"name",
"targetNodeId",
"targetPath",
"expression"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}