Support for importing IFCZIP files. See #834

This commit is contained in:
Dion Moult
2020-04-12 09:17:26 +10:00
parent 42fedf81c4
commit bdfe197c64
2 changed files with 14 additions and 3 deletions
@@ -64,9 +64,8 @@ class ExportIFC(bpy.types.Operator):
class ImportIFC(bpy.types.Operator, ImportHelper):
bl_idname = "import.ifc"
bl_label = "Import .ifc file"
filename_ext = ".ifc"
filter_glob: bpy.props.StringProperty(default="*.ifc", options={'HIDDEN'})
filter_glob: bpy.props.StringProperty(default="*.ifc;*.ifczip", options={'HIDDEN'})
def execute(self, context):
start = time.time()