[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [45619] trunk/blender/release/scripts/ startup/bl_operators/view3d.py: don't constrain single edge extrude, annoying for retopo

Campbell Barton ideasman42 at gmail.com
Sat Apr 14 07:09:30 CEST 2012


Revision: 45619
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=45619
Author:   campbellbarton
Date:     2012-04-14 05:09:23 +0000 (Sat, 14 Apr 2012)
Log Message:
-----------
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.

Modified Paths:
--------------
    trunk/blender/release/scripts/startup/bl_operators/view3d.py

Modified: trunk/blender/release/scripts/startup/bl_operators/view3d.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_operators/view3d.py	2012-04-14 03:58:08 UTC (rev 45618)
+++ trunk/blender/release/scripts/startup/bl_operators/view3d.py	2012-04-14 05:09:23 UTC (rev 45619)
@@ -76,7 +76,9 @@
             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')
 




More information about the Bf-blender-cvs mailing list