[Bf-blender-cvs] [9694480] soc-2016-uv_tools: Make convex packing default setting for irregular packing operator for now

Phil Gosch noreply at git.blender.org
Tue Aug 23 11:33:03 CEST 2016


Commit: 969448019e24b145dabedf8d959995d40d103e47
Author: Phil Gosch
Date:   Tue Aug 23 11:32:31 2016 +0200
Branches: soc-2016-uv_tools
https://developer.blender.org/rB969448019e24b145dabedf8d959995d40d103e47

Make convex packing default setting for irregular packing operator for now

===================================================================

M	source/blender/editors/uvedit/uvedit_unwrap_ops.c

===================================================================

diff --git a/source/blender/editors/uvedit/uvedit_unwrap_ops.c b/source/blender/editors/uvedit/uvedit_unwrap_ops.c
index 4320d35..c32c6ba 100644
--- a/source/blender/editors/uvedit/uvedit_unwrap_ops.c
+++ b/source/blender/editors/uvedit/uvedit_unwrap_ops.c
@@ -1096,7 +1096,7 @@ void UV_OT_irregular_pack_islands(wmOperatorType *ot)
 	ot->poll = ED_operator_uvedit;
 
 	/* properties */
-	RNA_def_boolean(ot->srna, "concave", true, "Use concave boundaries", "Use concave boundaries (slower but better results)");
+	RNA_def_boolean(ot->srna, "concave", false, "Use concave boundaries", "Use concave boundaries (slower but better results)");
 	RNA_def_float(ot->srna, "margin", 0.0f, 0.0f, 1.0f, "Margin", "Border Margin/Padding to apply per UV island", 0.0f, 1.0f);
 	RNA_def_int(ot->srna, "rotation_steps", 4, 0, 360, "Rotation Steps", "Allowed rotations to try during packing. (2=180�, 4=90�, etc.)", 0, 360);
 	RNA_def_int(ot->srna, "iterations", 0, 0, INT_MAX, "Iterations", "Number of iterations to run, 0 is unlimited when run interactively", 0, 10000);




More information about the Bf-blender-cvs mailing list