list_ifc_entities
Extract and filter IFC entities by type from Blender models, optionally limiting results to selected objects, and output as JSON for streamlined analysis.
Instructions
List IFC entities of a specific type. Can be filtered to only include objects
currently selected in the Blender UI.
Args:
entity_type: Type of IFC entity to list (e.g., "IfcWall")
limit: Maximum number of entities to return
selected_only: If True, only return information about selected objects
Returns:
A JSON-formatted string listing the specified entities
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entity_type | No | ||
limit | No | ||
selected_only | No |
Input Schema (JSON Schema)
{
"properties": {
"entity_type": {
"default": null,
"title": "Entity Type",
"type": "string"
},
"limit": {
"default": 50,
"title": "Limit",
"type": "integer"
},
"selected_only": {
"default": false,
"title": "Selected Only",
"type": "boolean"
}
},
"title": "list_ifc_entitiesArguments",
"type": "object"
}