Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'object_fracture_cell/process/crack_functions.py')
-rw-r--r--object_fracture_cell/process/crack_functions.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/object_fracture_cell/process/crack_functions.py b/object_fracture_cell/process/crack_functions.py
index ff7e93a3..ffc513b6 100644
--- a/object_fracture_cell/process/crack_functions.py
+++ b/object_fracture_cell/process/crack_functions.py
@@ -13,20 +13,20 @@ from mathutils import Euler
# Join fractures into an object
def make_join(cells):
-
+
# Execute join
bpy.context.view_layer.objects.active = cells[0]
cells[0].select_set(state=True)
bpy.ops.object.join()
bpy.ops.object.origin_set(type='GEOMETRY_ORIGIN')
-
+
joined = bpy.context.active_object
-
+
suffix_index = joined.name.rfind("_cell")
if suffix_index != -1:
joined.name = joined.name[:suffix_index] + "_crack"
-
+
return bpy.context.active_object
@@ -45,7 +45,7 @@ def add_modifiers(decimate_val=0.4, smooth_val=0.5):
smooth = bpy.context.object.modifiers[-1]
smooth.name = 'SMOOTH_crackit'
smooth.factor = smooth_val
-
+
# -------------- multi extrude --------------------
# var1=random offset, var2=random rotation, var3=random scale