From 9a79bd38ade00fc663c27ffda9892629ef5ca755 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 14 Apr 2012 05:09:23 +0000 Subject: [PATCH] don't constrain single edge extrude, annoying for retopo see: http://www.youtube.com/watch?v=5AzRpFfWR6k request from ZanQdo, VenomGFX & Jonathan Williams. For previous functionality Z, Shift+Z. --- release/scripts/startup/bl_operators/view3d.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/release/scripts/startup/bl_operators/view3d.py b/release/scripts/startup/bl_operators/view3d.py index 315b7e5c4fc..9b1bf256308 100644 --- a/release/scripts/startup/bl_operators/view3d.py +++ b/release/scripts/startup/bl_operators/view3d.py @@ -76,7 +76,9 @@ class VIEW3D_OT_edit_mesh_extrude_move(Operator): bpy.ops.mesh.extrude_region_move('INVOKE_REGION_WIN', TRANSFORM_OT_translate={ "constraint_orientation": 'NORMAL', - "constraint_axis": (True, True, False)}) + # not a popular choice, too restrictive for retopo. + #~ "constraint_axis": (True, True, False)}) + "constraint_axis": (False, False, False)}) else: bpy.ops.mesh.extrude_region_move('INVOKE_REGION_WIN')