BBIM Drawings: Exclude ifc objects hidden from render view

This commit is contained in:
Sigma Dimensions
2023-05-28 14:47:47 +01:00
parent 65f1bff957
commit 1bf83ab0b9
+1 -1
View File
@@ -1528,7 +1528,7 @@ class Drawing(blenderbim.core.tool.Drawing):
tool.Ifc.get_entity(o)
for o in objs
if cls.is_in_camera_view(o, camera_inverse_matrix, x, y, camera.data.clip_start, camera.data.clip_end)
and tool.Ifc.get_entity(o)
and tool.Ifc.get_entity(o) and not o.hide_render
]
)