Skip to content
This repository was archived by the owner on Nov 24, 2024. It is now read-only.

Commit fb79989

Browse files
committed
Fix bug where aggregates were accidentally hidden when generating drawings
1 parent b9af490 commit fb79989

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ifcblenderexport/blenderbim/bim/operator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2559,7 +2559,7 @@ def create_raster(self, camera, drawing_style):
25592559
obj.hide_set(True)
25602560
for obj in bpy.context.visible_objects:
25612561
if (
2562-
not obj.data
2562+
(not obj.data and not obj.instance_collection)
25632563
or isinstance(obj.data, bpy.types.Camera)
25642564
or "IfcGrid/" in obj.name
25652565
or "IfcGridAxis/" in obj.name

0 commit comments

Comments
 (0)