delete_assets
Remove one or more assets from the PlayCanvas Editor by specifying their IDs. This tool helps manage and clean up resources in real-time 3D web applications efficiently.
Instructions
Delete one or more assets
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ids | Yes | The asset IDs of the assets to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ids": {
"description": "The asset IDs of the assets to delete",
"items": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"description": "An asset ID."
},
"minItems": 1,
"type": "array"
}
},
"required": [
"ids"
],
"type": "object"
}