request from Jedrzej Slewczuk's:

Option for tagging creases (Ctrl+RMB) to also re-unwrap the mesh.
 In 2.42 this could be done by setting rt==8 (very hidden), now its a little less hidden (in the toolbar).
This commit is contained in:
2011-03-10 05:52:16 +00:00
parent 6a32442855
commit 3ad8fd44c4
6 changed files with 67 additions and 24 deletions

View File

@@ -177,7 +177,15 @@ class VIEW3D_PT_tools_meshedit_options(View3DPanel, bpy.types.Panel):
col = layout.column(align=True)
col.prop(mesh, "use_mirror_x")
col.prop(mesh, "use_mirror_topology")
col.prop(context.tool_settings, "edge_path_mode")
ts = context.tool_settings
col.label("Edge Select Mode")
col.prop(ts, "edge_path_mode", text="")
col = layout.column(align=True)
col.active = ts.edge_path_mode == 'SEAM'
col.prop(context.tool_settings, "edge_path_live_unwrap")
# ********** default tools for editmode_curve ****************