New Link IFC operator to easily append IFCs from another Blend file into a master file

This commit is contained in:
Dion Moult
2020-12-10 13:52:29 +11:00
parent fb7998980d
commit 2ac0b75dbc
3 changed files with 30 additions and 0 deletions
@@ -231,6 +231,7 @@ if bpy is not None:
operator.SetBlenderClashSetB,
operator.ExecuteBlenderClash,
operator.CleanWireframes,
operator.LinkIfc,
prop.StrProperty,
prop.Attribute,
prop.MaterialLayer,
@@ -4862,3 +4862,30 @@ class CleanWireframes(bpy.types.Operator):
if not obj.modifiers.get("EdgeSplit"):
obj.modifiers.new("EdgeSplit", "EDGE_SPLIT")
return {"FINISHED"}
class LinkIfc(bpy.types.Operator):
bl_idname = "bim.link_ifc"
bl_label = "Link IFC"
filepath: bpy.props.StringProperty(subtype="FILE_PATH")
def execute(self, context):
#bpy.context.active_object.active_material.BIMMaterialProperties.location = self.filepath
#coll_name = "MyCollection"
with bpy.data.libraries.load(self.filepath, link=True) as (data_from, data_to):
data_to.scenes = data_from.scenes
for scene in bpy.data.scenes:
if not scene.library or scene.library.filepath != self.filepath:
continue
for child in scene.collection.children:
if "IfcProject" not in child.name:
continue
bpy.data.scenes[0].collection.children.link(child)
return {"FINISHED"}
def invoke(self, context, event):
context.window_manager.fileselect_add(self)
return {"RUNNING_MODAL"}
@@ -2305,6 +2305,8 @@ class BIM_PT_annotation_utilities(Panel):
row = layout.row(align=True)
row.operator("bim.clean_wireframes")
row = layout.row(align=True)
row.operator("bim.link_ifc")
row = layout.row(align=True)
op = row.operator("bim.add_annotation", text="Dim", icon="ARROW_LEFTRIGHT")