editor_get_asset_references
Retrieve a list of Unreal Engine assets referencing a specified asset by its path using the input schema. Easily identify dependencies for asset management.
Instructions
Get references for an asset
Example output: [{'name': '/Game/Materials/M_Character.M_Character', 'class': 'Material'}, {'name': '/Game/Blueprints/BP_Player.BP_Player', 'class': 'Blueprint'}]
Returns list of assets that reference the specified asset.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
asset_path | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"asset_path": {
"type": "string"
}
},
"required": [
"asset_path"
],
"type": "object"
}