blender_export_asset
Export Blender 3D objects and scenes to multiple formats (FBX, OBJ, GLTF, STL, etc.) for sharing, backup, or use in other applications.
Instructions
Export Blender objects or entire scene to various 3D formats.
Comprehensive export tool with support for multiple formats and export options including materials and animations.
Args:
objects (optional): Object names to export (exports all if not specified)
format (enum): Export format (fbx, obj, gltf, glb, stl, ply, abc)
file_path (string): Export destination path (relative to project)
options (optional): Export options including modifiers, materials, and compression
Returns: Export confirmation with file size, format, and object count
Examples:
Export all: format="fbx", file_path="exports/scene.fbx"
Export specific: objects=["Cube", "Sphere"], format="obj", file_path="exports/selection.obj"
Optimized export: format="gltf", file_path="exports/optimized.glb", options={compression: 90}
Use when: Sharing assets, exporting for other applications, backup and version control Don't use when: Quick previews (use screenshot tools instead)
Performance: Varies by scene complexity and format, typically 5-30 seconds
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| objects | No | Object names to export (exports all if not specified) | |
| format | Yes | Export format | |
| file_path | Yes | Export destination path | |
| options | No | Export options |