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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-04-14 09:09:23 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-14 09:09:23 +0400
commit9a79bd38ade00fc663c27ffda9892629ef5ca755 (patch)
treeeb9083b7a7f9c46056e99e990d8ebb7b2b8e8b94 /release
parent969a079aeb06979257e82ab9c2410ee49c841ba3 (diff)
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.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_operators/view3d.py4
1 files changed, 3 insertions, 1 deletions
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')