From 808ff548ec08671d593ea3e956458fa73e78f9e9 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 29 Aug 2023 10:42:33 +0500 Subject: [PATCH] IfcElementType now appears first in Object Metadata Because it's seems more general workflow to create types than just assign classes. Example - https://i.imgur.com/DD8twX3.png --- src/blenderbim/blenderbim/bim/module/root/data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blenderbim/blenderbim/bim/module/root/data.py b/src/blenderbim/blenderbim/bim/module/root/data.py index 1efb72b543..6b91e18ab8 100644 --- a/src/blenderbim/blenderbim/bim/module/root/data.py +++ b/src/blenderbim/blenderbim/bim/module/root/data.py @@ -49,8 +49,8 @@ class IfcClassData: @classmethod def ifc_products(cls): products = [ - "IfcElement", "IfcElementType", + "IfcElement", "IfcSpatialElement", "IfcSpatialElementType", "IfcGroup", @@ -62,8 +62,8 @@ class IfcClassData: version = tool.Ifc.get_schema() if version == "IFC2X3": products = [ - "IfcElement", "IfcElementType", + "IfcElement", "IfcSpatialStructureElement", "IfcGroup", "IfcStructuralItem",