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
AgeCommit message (Collapse)Author
2020-07-15UI: Add manifold extrude to extrude menuLiam Scaife
2020-06-22Tools: rename 'Extrude, Dissolve and Intersect' to 'Extrude Manifold'Germano Cavalcante
2020-04-16Fix T75785: "Extrude Faces Along Normals" throws errorGermano Cavalcante
2020-04-15Operator: Add 'dissolve_and_intersect' option for 'Extrude and Move on Normals'Germano Cavalcante
This allows easy choice of operators when editing keymaps
2020-04-15Cleanup: Remove unused operatorGermano Cavalcante
2020-04-15View3D: New tool 'Extrude, Dissolve and Intersect'Germano Cavalcante
Basically this new tool constitutes a macro that uses the parameters of the Extrude and Translate operators that were recently implemented. Thanks to @CandleComet for initial implementation. Differential Revision: https://developer.blender.org/D7222
2019-07-07Cleanup: unused vars, redundant parenthisisCampbell Barton
2019-05-14Keymap: add option for tilde key preferenceCampbell Barton
Since the view menu is redundant for people with a numpad, add a preference for it to switch between gizmos instead.
2019-05-09Cleanup: unused args/vars/imports in bl_operatorsCampbell Barton
2019-05-05UI: TooltipsWilliam Reynish
- Add missing tooltips to Quick Effects and Subdivide Edge Ring - Add proper tooltip to the Bevel operator - Clearer tooltips for the extrude operators Plus a few other tweaks Suggested by users on Devtalk.
2019-03-263D View: move deselect all logic into an optionCampbell Barton
This removes `VIEW3D_OT_select_or_deselect_all`, adding a deselect_all option to the `VIEW3D_OT_select` operator. - Add utility functions to simplify de-selecting all. - Return true from selection functions when they change the selection to avoid redundant updates. - Use arrays of bases when passing objects between selection utility functions since some users require bases. - Fix logical error in box selection that updated all objects after the first hit.
2019-03-25Fix T62536: incorrect context when selecting particlesJacques Lucke
Reviewers: brecht Differential Revision: https://developer.blender.org/D4566
2019-02-27Transform: refactor orientation naming and usasgeCampbell Barton
Transform orientation was previously related to constraints, recent changes meant it was used even when not constraining to an axis. Now transform orientation is separate from axis constraints.
2019-02-26Fix T61637: Edge extrude always uses normal orientationCampbell Barton
2018-12-20Cleanup: styleCampbell Barton
2018-12-07Fix T58898: Python error clicking in empty space in text edit mode.Brecht Van Lommel
2018-11-26Fix broken face select in paint modes with RMB select.Brecht Van Lommel
2018-11-26Cleanup: unused vars, importsCampbell Barton
2018-11-25Keymaps: add 3D view click empty space to deselect all.Brecht Van Lommel
The implementation of this operator was modified to be more efficient and ensure the undo history has the exact operator used.
2018-07-11PyAPI: Use annotations for RNA definitionsCampbell Barton
- Logical use of fields since they define type information. - Avoids using ordered-dict metaclass. Properties using regular assignments will print a warning and load, however the order is undefined.
2018-06-26Cleanup: pep8 function indentationCampbell Barton
2017-04-14Cleanup: triple quotes for docstringsCampbell Barton
2017-03-18PyAPI: remove bpy.utils.register_module()Campbell Barton
In preparation for it being removed, see: T47811
2014-08-20Fix T41499: Can't use Deselect/Select All tool while in Texture Paint modeSergey Sharybin
2014-04-24Code cleanup: unused python vars & importsCampbell Barton
Use frosted rather then pyflakes
2013-12-22Fix for extrude poll functions not checking active objectCampbell Barton
2013-11-19Code Cleanup: style, spelling and pep8 editsCampbell Barton
2013-11-01* Extrude options where available in object mode (search menu), resulting in ↵Thomas Dinges
error msg. Added polls now, patch by Gottfried Hofmann (gottfried).
2013-10-15add 'Extrude Region, Vertex Normal' to the extrude menu, equivalent of ↵Campbell Barton
'Extrude, Escape, Alt+S'
2013-06-27pep8 cleanupCampbell Barton
2013-06-10Correction to previous maya keymap commitSergey Sharybin
Added UNDOflag to the wrong operator..
2013-06-10Fix #35661: Maya key config - select operations are skipped by "undo"Sergey Sharybin
2013-05-31Follow up to previous commitSergey Sharybin
Made Ctrl-LMB clear selection from the object.
2013-05-11Fix #35273: click in empty space to deselect as used by the Maya keymap gaveBrecht Van Lommel
a python error when used in pose mode.
2013-04-30Partial fix for #35108: Shortcuts 3dsmax Blender 2.67RCSergey Sharybin
Made keyap use the same select_or_deselect_all operator as used for maya keymap instead of tricks with deselect_all. Solves issue with selection in editor mode (reported as #3 in the original bug report).
2013-04-29Usual UI messages fixes...Bastien Montagne
2013-04-22Fix #34350: Maya Keyboard map preset problemsSergey Sharybin
Two main things: - Made a python operator for selection in a viewport which will de-select everything if nothing is under the mouse. To do so needed to modify VIEW3D_OT_select, so invoke sets mouse location which is later used by exec function. This way it's possible to select stuff from python defined operator. Not best-ever solution since ideally exec() shall not do OpenGL stuff, but we've got this issue in some other operators. We'll solve this later. - Used a keymap from Gianmichele Mariani as a reference, updated his keymap to latest changes in operators. We shall match Maya keymap much better now, thanks for the keymap dude!
2012-04-14don't constrain single edge extrude, annoying for retopoCampbell Barton
see: http://www.youtube.com/watch?v=5AzRpFfWR6k request from ZanQdo, VenomGFX & Jonathan Williams. For previous functionality Z, Shift+Z.
2011-10-17correct spelling errors in commentsCampbell Barton
2011-09-26pep8 cleanup and fix for keymap test operator from my own recent fix.Campbell Barton
2011-09-23SVN maintenance.Guillermo S. Romero
2011-09-222.6 Python UI files:Thomas Dinges
* Moved Operators from bl_ui into bl_operators. * Renamed HELP_OT_operator_cheat_sheet to WM_OT_operator_cheat_sheet.