store_download
Download assets from the store for use in real-time 3D web applications, specifying ID, name, and licensing details for integration into PlayCanvas Editor projects.
Instructions
Download an asset from the store
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
license | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"license": {
"additionalProperties": false,
"properties": {
"author": {
"type": "string"
},
"authorUrl": {
"format": "uri",
"type": "string"
},
"license": {
"type": "string"
}
},
"required": [
"author",
"authorUrl",
"license"
],
"type": "object"
},
"name": {
"type": "string"
}
},
"required": [
"id",
"name",
"license"
],
"type": "object"
}