(scene: bpy.types.Scene)
| 236 | |
| 237 | @persistent |
| 238 | def loadIfcStore(scene: bpy.types.Scene) -> None: |
| 239 | IfcStore.purge() |
| 240 | refresh_ui_data() |
| 241 | if not tool.Ifc.get(): |
| 242 | return |
| 243 | tool.Ifc.schema() |
| 244 | IfcStore.relink_all_objects() |
| 245 | |
| 246 | |
| 247 | @persistent |
nothing calls this directly
no test coverage detected