createLayers
Generates multiple layers in 3D creative workflows, enabling structured hierarchies, clip management, and blend weight configuration for precise animation control.
Instructions
Create multiple Layers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes | Array of Layers to create |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"items": {
"description": "Array of Layers to create",
"items": {
"additionalProperties": false,
"properties": {
"additive": {
"default": false,
"description": "Whether this layer adds to base pose",
"type": "boolean"
},
"clipIds": {
"default": [],
"description": "IDs of clips in this layer",
"items": {
"type": "string"
},
"type": "array"
},
"metadata": {
"additionalProperties": {},
"description": "Additional tool-specific metadata",
"type": "object"
},
"name": {
"description": "Display name",
"type": "string"
},
"parentId": {
"description": "Parent layer if in a hierarchy",
"type": "string"
},
"weight": {
"default": 1,
"description": "Blend weight influence",
"maximum": 1,
"minimum": 0,
"type": "number"
}
},
"required": [
"name"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}