duplicate
Clone entities in 3D creative projects with customizable options for duplicating children and dependencies using the 3D-MCP server. Ideal for creating replicas while maintaining control over linked resources.
Instructions
Duplicate an entity
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duplicateChildren | No | Whether to duplicate children | |
duplicateDependencies | No | Whether to duplicate dependencies (materials, etc.) | |
id | Yes | Source entity identifier | |
newName | No | Name for the duplicated entity |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"duplicateChildren": {
"default": true,
"description": "Whether to duplicate children",
"type": "boolean"
},
"duplicateDependencies": {
"default": false,
"description": "Whether to duplicate dependencies (materials, etc.)",
"type": "boolean"
},
"id": {
"description": "Source entity identifier",
"type": "string"
},
"newName": {
"description": "Name for the duplicated entity",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}