ifc array modifier: adds the option to choose between "total" and "increment" as dimension input

This commit is contained in:
Bruno Perdigão
2023-04-05 09:30:11 -03:00
committed by Dion Moult
parent a1adbe2b34
commit 2cd7e737cd
4 changed files with 20 additions and 2 deletions
@@ -261,6 +261,14 @@ class BIMArrayProperties(PropertyGroup):
description="Use local space for array items offset instead of world space",
default=True,
)
dimension_input_type: bpy.props.EnumProperty(
items=(
("Increment", "Increment", ""),
("Total", "Total", ""),
),
name="Type of input dimension",
default="Increment",
)
class BIMStairProperties(PropertyGroup):