This commit is contained in:
Andrej730
2024-02-12 12:15:27 +05:00
parent 317dbc0ab8
commit dea29a3ec7
+1
View File
@@ -63,6 +63,7 @@ class Type(blenderbim.core.tool.Type):
types = ifc_file.by_type("IfcElementType") types = ifc_file.by_type("IfcElementType")
# exclude IfcSpatialElementType # exclude IfcSpatialElementType
types += ifc_file.by_type("IfcTypeProduct", include_subtypes=False) types += ifc_file.by_type("IfcTypeProduct", include_subtypes=False)
if not tool.Ifc.get_schema().startswith("IFC4X3"):
types += ifc_file.by_type("IfcWindowStyle") types += ifc_file.by_type("IfcWindowStyle")
types += ifc_file.by_type("IfcDoorStyle") types += ifc_file.by_type("IfcDoorStyle")
return types return types