download_polyhaven_asset
Download Poly Haven assets directly into Blender for 3D modeling projects. Specify asset type, resolution, and format to import HDRIs, textures, or models into your scene.
Instructions
Download and import a Polyhaven asset into Blender.
Parameters:
asset_id: The ID of the asset to download
asset_type: The type of asset (hdris, textures, models)
resolution: The resolution to download (e.g., 1k, 2k, 4k)
file_format: Optional file format (e.g., hdr, exr for HDRIs; jpg, png for textures; gltf, fbx for models)
Returns a message indicating success or failure.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| asset_id | Yes | ||
| asset_type | Yes | ||
| resolution | No | 1k | |
| file_format | No |
Input Schema (JSON Schema)
{
"properties": {
"asset_id": {
"title": "Asset Id",
"type": "string"
},
"asset_type": {
"title": "Asset Type",
"type": "string"
},
"file_format": {
"default": null,
"title": "File Format",
"type": "string"
},
"resolution": {
"default": "1k",
"title": "Resolution",
"type": "string"
}
},
"required": [
"asset_id",
"asset_type"
],
"type": "object"
}