Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_view3d.py
| Context not available. | |||||
| layout.operator("view3d.edit_mesh_extrude_move_shrink_fatten", text="Extrude Faces Along Normals"), | layout.operator("view3d.edit_mesh_extrude_move_shrink_fatten", text="Extrude Faces Along Normals"), | ||||
| 'FACE': lambda layout: | 'FACE': lambda layout: | ||||
| layout.operator("mesh.extrude_faces_move", text="Extrude Individual Faces"), | layout.operator("mesh.extrude_faces_move", text="Extrude Individual Faces"), | ||||
| 'MANIFOLD': lambda layout: | |||||
| layout.operator("view3d.edit_mesh_extrude_manifold_normal", text="Extrude Manifold"), | |||||
| } | } | ||||
| @staticmethod | @staticmethod | ||||
| Context not available. | |||||
| menu = [] | menu = [] | ||||
| if mesh.total_face_sel: | if mesh.total_face_sel: | ||||
| menu += ['REGION', 'REGION_VERT_NORMAL', 'FACE'] | menu += ['REGION', 'REGION_VERT_NORMAL', 'FACE', 'MANIFOLD'] | ||||
| if mesh.total_edge_sel and (select_mode[0] or select_mode[1]): | if mesh.total_edge_sel and (select_mode[0] or select_mode[1]): | ||||
| menu += ['EDGE'] | menu += ['EDGE'] | ||||
| if mesh.total_vert_sel and select_mode[0]: | if mesh.total_vert_sel and select_mode[0]: | ||||
| Context not available. | |||||