instantiate_template_assets
Generate 3D web application assets by instantiating template assets in the PlayCanvas Editor MCP Server.
Instructions
Instantiate one or more template assets
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ids | Yes | The asset IDs of the template assets to instantiate |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ids": {
"description": "The asset IDs of the template assets to instantiate",
"items": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"description": "An asset ID."
},
"minItems": 1,
"type": "array"
}
},
"required": [
"ids"
],
"type": "object"
}