You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This remeshes all selected objects by converting them to convex hulls. This can help clean up 'bad' geometry that can cause problems with tools like Discretize. Members of an object group 'bcb_noRemesh' will be skipped if present
Copy file name to clipboardExpand all lines: kk_bullet_constraints_builder/global_props.py
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -86,15 +86,15 @@ class bcb_props(bpy.types.PropertyGroup):
86
86
preprocTools_grp_sep=string_(name="Separator", default=':', update=updGlob, description="Defines a key character or string to derive the group names from the object names in the scene. Example: An object name 'Columns:B4' with separator ':' will generate a group named 'Columns' containing all objects with this phrase in their names")
87
87
preprocTools_grp_occ=bool_(name="First Occurrence", default=1, update=updGlob, description="Enables first occurrence search of the separator within an element name for cases when there are more than one separator included, if disabled the last occurrence is used")
88
88
89
-
preprocTools_sep2=bool_(default=1)
89
+
preprocTools_sep=bool_(default=1)
90
90
91
91
preprocTools_mod=bool_(default=1)
92
92
93
-
preprocTools_ctr=bool_(default=1)
93
+
preprocTools_rem=bool_(default=0)
94
94
95
-
preprocTools_sep=bool_(default=1)
95
+
preprocTools_ctr=bool_(default=1)
96
96
97
-
preprocTools_rem=bool_(default=0)
97
+
preprocTools_sep2=bool_(default=1)
98
98
99
99
preprocTools_dis=bool_(default=1)
100
100
preprocTools_dis_siz=float_(name="Minimum Size Limit", default=2.9, min=0.0, max=1000, update=updGlob, description="Discretization size in m this tool tries to reach by discretization. To enforce regularity at all times, elements afterwards can deviate in size to some extent from the target size. For booleans (default method): The minimum dimension value serves as limit for an element still being considered for subdivision, at least two dimension axis must be above this size. After discretization no element will be larger than this value anymore, although they can be smaller up to 50%")
@@ -104,6 +104,8 @@ class bcb_props(bpy.types.PropertyGroup):
bl_description="Remeshes all selected objects by converting them to convex hulls. This can help clean up 'bad' geometry that can cause problems with tools like Discretize. Members of an object group 'bcb_noRemesh' will be skipped if present"
0 commit comments