Fixed double conversion in bim tool props after b4b6404

No more 1000000 and 3000000 mm values
This commit is contained in:
Andrej730
2023-04-28 17:31:54 +05:00
parent 3d9994726b
commit 14abf0fd23
+2 -2
View File
@@ -133,8 +133,8 @@ class Project(blenderbim.core.tool.Project):
def set_default_modeling_dimensions(cls):
props = bpy.context.scene.BIMModelProperties
unit_scale = ifcopenshell.util.unit.calculate_unit_scale(tool.Ifc.get())
props.extrusion_depth = 3 / unit_scale
props.length = 1 / unit_scale
props.extrusion_depth = 3
props.length = 1
props.rl1 = 0
props.rl2 = 1 / unit_scale
props.x = 0.5 / unit_scale