get_ifc_properties
Extract properties of IFC entities in Blender by GlobalId or from selected objects, returning data in JSON format for analysis and integration.
Instructions
Get properties of IFC entities. Can be used to get properties of a specific entity by GlobalId,
or to get properties of all currently selected objects in Blender.
Args:
global_id: GlobalId of a specific IFC entity (optional if selected_only is True)
selected_only: If True, return properties for all selected objects instead of a specific entity
Returns:
A JSON-formatted string with entity information and properties
Input Schema
Name | Required | Description | Default |
---|---|---|---|
global_id | No | ||
selected_only | No |
Input Schema (JSON Schema)
{
"properties": {
"global_id": {
"default": null,
"title": "Global Id",
"type": "string"
},
"selected_only": {
"default": false,
"title": "Selected Only",
"type": "boolean"
}
},
"title": "get_ifc_propertiesArguments",
"type": "object"
}