(self, context)
| 223 | filename_ext = ".ifc" |
| 224 | |
| 225 | def execute(self, context): |
| 226 | if self.is_existing_ifc_file(): |
| 227 | props = tool.Blender.get_bim_props() |
| 228 | props.ifc_file = self.get_filepath() |
| 229 | bonsai.bim.handler.loadIfcStore(bpy.context.scene) |
| 230 | tool.Blender.clear_undo_history() |
| 231 | return {"FINISHED"} |
| 232 | |
| 233 | def invoke(self, context, event): |
| 234 | props = tool.Blender.get_bim_props() |
nothing calls this directly
no test coverage detected