From 00efc2c759201af2f27a2ac6e2ec92f7170db7ed Mon Sep 17 00:00:00 2001 From: SavMartin Date: Sun, 24 May 2020 05:42:43 +0100 Subject: [PATCH] fix --- op_island_align_world.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/op_island_align_world.py b/op_island_align_world.py index 007fb0c..5ad4dd8 100644 --- a/op_island_align_world.py +++ b/op_island_align_world.py @@ -19,9 +19,9 @@ class op(bpy.types.Operator): bl_description = "Align selected UV islands to world / gravity directions" bl_options = {'REGISTER', 'UNDO'} - bool_face = bpy.props.BoolProperty(name="Per face", default=False, description="Use if every face is an island in uv space; this speeds up the script dramatically.") - bool_simple = bpy.props.BoolProperty(name="Simple align", default=False, description="Only process one edge per island, enough for nearly undistorted uvs.") - steps = bpy.props.IntProperty(name="Iterations", min=1, max=100, soft_min=1, soft_max=5, default=1, description="Using multiple steps (up to 5, usually 2 or 3) is useful in certain cases, especially uv hulls with high localized distortion.") + bool_face : bpy.props.BoolProperty(name="Per face", default=False, description="Use if every face is an island in uv space; this speeds up the script dramatically.") + bool_simple : bpy.props.BoolProperty(name="Simple align", default=False, description="Only process one edge per island, enough for nearly undistorted uvs.") + steps : bpy.props.IntProperty(name="Iterations", min=1, max=100, soft_min=1, soft_max=5, default=1, description="Using multiple steps (up to 5, usually 2 or 3) is useful in certain cases, especially uv hulls with high localized distortion.") # is_global = bpy.props.BoolProperty( # name = "Global Axis",