Mesh.subshape_type - replace with enum

This commit is contained in:
Andrej730
2024-11-26 14:47:24 +05:00
parent e6f0f54c93
commit b8468cb19c
+1 -1
View File
@@ -532,7 +532,7 @@ class BIMMeshProperties(PropertyGroup):
is_native: BoolProperty(name="Is Native", default=False)
is_swept_solid: BoolProperty(name="Is Swept Solid")
is_parametric: BoolProperty(name="Is Parametric", default=False)
subshape_type: StringProperty(name="Subshape Type")
subshape_type: EnumProperty(name="Subshape Type", items=[(i, i, "") for i in ("-", "PROFILE", "AXIS")])
ifc_parameters: CollectionProperty(name="IFC Parameters", type=IfcParameter)
item_attributes: CollectionProperty(name="Item Attributes", type=Attribute)
material_checksum: StringProperty(name="Material Checksum", default="[]")