Hi,
I just started diving back into BlenderBim, and I'm strugging to find good information on how to access attributes per-object on an imported IFC scene.
I'm experimenting with a program that starts Blender headless, runs the IFC exporter, and exports a glTF scene.
This is working great! I was happy that its basically two lines in Python:
`
bpy.ops.bim.load_project(filepath=input_path, use_relative_path=False, should_start_fresh_session=True)
bpy.ops.export_scene.gltf(filepath=output_path, export_draco_mesh_compression_enable=True)
`
Now I'd like to take it further and build a dictionary of metadata, mapping the actual blender 3D objects to their IFC data (any metadata that is available) and export that as a json along with the glTF file. In particular, in the Object Metadata panel > Attributes there is a Tag attribute that I'd like to associate with the actual 3D object.
I spent some time noodling around in the Python console, using the selected blender scene object as my starting point, digging around attributes to no avail. It seemed like I was only able to access general Blender data.
So after some reading I found this bit of code that almost gets what I need for this:
`
from blenderbim.bim.ifc import IfcStore
ifc_file = IfcStore.get_file()
allBuildingElements = ifc_file.by_type("IfcBuildingElement")
`
Then I can easily access .Tag and everything else directly from each element. But I still don't see how to associate this with an actual Blender object that was instantiated in the scene at import.
What is the simplest way to go about this?