Fix #2980. Minor cleanup to polish array panel UI.

This commit is contained in:
Dion Moult
2023-04-15 16:01:50 +10:00
parent 156269a53f
commit 7371efde17
4 changed files with 16 additions and 21 deletions
@@ -156,18 +156,15 @@ 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",
method: bpy.props.EnumProperty(
items=(("OFFSET", "Offset", ""), ("DISTRIBUTE", "Distribute", "")),
name="Method",
default="OFFSET",
)
sync_children: bpy.props.BoolProperty(
name="Sync Children",
description="Keep children objects in sync with parent object",
default = False,
description="Regenerate all children based on the parent object",
default=False,
)