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
2019-02-27Cleanup: rename lamp -> lightCampbell Barton
2019-02-27Fix: Grease Pencil data panels not working with pinningDalai Felinto
Note: Things were working fine if you were to pin the Grease Pencil object, but not if you were pinning the GP data. In too many poll functions context.object was being requested when a simple context.gpencil_data would suffit. Panels that are still not showing in pinning: * DATA_PT_gpencil_display. The panel needs to be split in sub-panels, leaving all object-dependent properties in its own panel so we can poll it away, while showing the rest. * * * This commit doesn't handle greasepencil material. In this case I recommend we do as properties_material.py and have a generous poll(), followed by different drawing logics whether or not we have an object.
2019-02-26Grease Pencil: Strokes Cut iconDalai Felinto
The icon was there, but it was not in the Export collection, nor was it correctly named.
2019-02-26UI: Move Pivot next to Orientation in headerWilliam Reynish
-The pivot point and orientation of any transform are strongly related -It matches the comma-key and period-key on the keyboard who are neighbours -We get slightly nicer grouping this way, with the two axis-related options on the left and the two toggles on the right Reviewers: pablovazquez, campbellbarton Differential Revision: https://developer.blender.org/D4413
2019-02-26UI: IconsWilliam Reynish
New icons from Andrzej Ambroż / jendrzych: -New trash icon for deleting ID's and other data (currently unused) -New icon for the Grease Pencil select between strokes mode -New icon for Proportional Editing Root Falloff curve Also adjustments for Jump to Next / Prev. Keyframe, Camera ObData, Point Light ObData, Light Probe Object and ObData, Collection & Save icons.
2019-02-26UI: Show marker lines in remaining animation spacesJacques Lucke
This also includes fixed/slighly refactored drawing code for marker lines. The old code used the wrong height. Reviewers: brecht Differential Revision: https://developer.blender.org/D4411
2019-02-26GP: Redesign wireframe modeAntonioya
Now it's possible use the different Wire modes (Single, Object & Random) Also support for x-ray mode. For random colors, the name of the object and the name of the layer is used. Also some parameters cleanup.
2019-02-26GP: Draw: Stroke TrimCharlie Jolly
New edit mode operator and post-processing brush option. Trim works on a single GP stroke. It removes trailing points before and after the first intersection (or loop) nearest to the start of the stroke.
2019-02-26Fix T61637: Edge extrude always uses normal orientationCampbell Barton
2019-02-26UI: disable split layout for cursor transformCampbell Barton
There isn't much horizontal space in the side-bar, also object transform which is very similar doesn't use a split layout.
2019-02-26Cleanup: assign rotation_mode to a variableCampbell Barton
Don't access multiple times per draw.
2019-02-25Grease Pencil naming: Use clear names for depth orderingWilliam Reynish
- Add a new panel to differentiate between viewport display and stroke options - Use clearer naming for depth ordering and stroke thickness properties Reviewers: antoniov Differential Revision: https://developer.blender.org/D4405
2019-02-25I18n: enable Abkhaz in Blender.Bastien Montagne
2019-02-25RNA: disable animating the 3D cursorCampbell Barton
Decorators took up space in the UI and this doesn't seem very useful.
2019-02-253D View: support for editing cursor rotationCampbell Barton
Add buttons for editing the cursor rotation as well as rotation modes, similar to object and pose bones.
2019-02-23GP: Define new Draw ModeAntonioya
Add a new Draw Mode to display panel in order to define the z-.depth order of the strokes using the real 3D position and not the 2D layer position. This change makes possible to use VR with grease pencil drawings because the depth of the strokes change with camera position. Also, provide an alternative solution to tasks: T57859, T60325, The parameter only works with 3D space depth ordering. The Back and Front depths are incompatible with 3D Space mode. Options are: - Back - Front - 3D Space->2D Layers (default) -3D Space->3D Location (new mode)
2019-02-22Fix T55921: Toggling visibility for collections doesn't work in PoseDalai Felinto
It is always dangerous to add more shortcuts those days. But this way it is consistent with 2.79 to a point. When in edit mode (mesh, greasepencil, ...) 1-3 to change submode still has priority. When in posemode or greasepencil draw mode however, 1-9 can still be used to temporarily get some collections out of the way.
2019-02-22Wireframe: Add object and random coloring option in wireframe modeClément Foucault
The option is separated from the solid mode color option. Random color uses the same method as solid mode. Selection state is indicated by a brighter color that is outside the brightness range of the unselected state colors. The active state is indicated by the outlines that is, now, still drawn in wireframe mode. Coloring of the selection / active outline is not optimal because it can look ugly in some cases of color combination. But the outline color is using index range coloring so it's not trivial to change the color of the outline per object. For now we use the same outline color used in solid mode for consistency and also still add an emphasis on the selected objects. The Single color option uses the theme color. Maybe it would be nice to change the name of it in a latter commit to avoid confusion.
2019-02-21Tool: Use scale keymap for scale cage toolCampbell Barton
Needed so clicking anywhere performs uniform scale.
2019-02-21Theme: update blender-light theme clipping borderCampbell Barton
Color was too dark compared to the background color.
2019-02-21Keymap: add context menus for paint modesCampbell Barton
These are place-holders with only a few items in each, as with the rest of the context menus they need to be populated & organized. Weight Paint 'weight' shortcut has been changed from W to Ctrl-F, to co-exist w/ the context menu shortcut.
2019-02-21Keymap: Ctrl-Home/End to set start/end frameCampbell Barton
New shortcuts for the dope-sheet.
2019-02-20Units: Use correct units for transform operatorsWilliam Reynish
-Use distance for Shrink/Fatten Distance -Use factor for Smooth Factor -Use Factor for Randomize Uniform and Normal values -Use Distance for Randomize distance amount -Randomize Transform Scale was wrongly using distance
2019-02-20Fix File > Save not showing red highlight when saving over existing files.Brecht Van Lommel
Don't disable the save over popup through the keymap, just remove it entirely from the code so that the file browser interprets the property correctly.
2019-02-20Measure Tool: use x/del key to remove the active rulerCampbell Barton
Dragging outside the view was only meant to be a temporary workaround.
2019-02-18Add Abkhaz language to Blender (disabled for until we get some translated ↵Bastien Montagne
content).
2019-02-18Markers: Make marker lines in sequencer and graph editor optionalJacques Lucke
- Makes it possible to show a vertical line for every marker in the graph editor. - Makes the marker line visiblity optional in the sequencer and graph editor. Request from @hjalti. Reviewers: brecht Differential Revision: https://developer.blender.org/D4348
2019-02-18UI: motion paths panel layout tweakCampbell Barton
- User better alignment for the paths_range_update button. - Use Flow layout for the Display sub-panel items.
2019-02-18UI: armature properties layout tweaksWilliam Reynish
- Rename 'Draw Mode' to 'Display As', consistent with other properties. - Use flow layout.
2019-02-18UI: improve light probe properties layoutWilliam Reynish
Smaller adjustments to the Light Probe properties layout. - Correctly use alignment for multi-property values. - Correctly use sub-panels. - Correctly use PROP_FACTOR for visibility_bleed_bias and visibility_blur.
2019-02-18Fix T61187: Fluid Particle settings UI elementsWilliam Reynish
Some properties were accidentally hidden for particle fluids. - Made sure we show the Forces and Integration sub-panels for particle fluids. - Slightly re-ordered the sub-panels here, so that the same sub-panels are at the top for Newtonian and Fluid particles. - Separated the Fluid Interaction sub-panel so we can give it a unique name. - Removed lingering unnecessary 'Keys' label in the Keyed physics.
2019-02-16Fix T61591 Bevel tool not executing on mouseup.Howard Trickey
When modal map was introduced, left out handling of what happens when bevel is made active tool in toolbar and user starts bevel by clicking and dragging.
2019-02-16DNA: rename theme space typesCampbell Barton
Follow enum naming convention, use "space_" prefix instead of "t".
2019-02-15Add global control over disabling high-resolution smoke drawSergey Sharybin
Can be found in the viewport's simplify panel, allows to easily disable high-res display for all the smokes in the scene.
2019-02-15ctodata: make stripping the last byte optionalCampbell Barton
2019-02-14GP: Cleanup some lowercase textsAntonioya
2019-02-14Fix Object > Animation > Bake ActionDalai Felinto
2019-02-14UI: add symmetrize to armature menuCampbell Barton
Was lost on menu reorganization, minor tweaks to make it match the context menu.
2019-02-14Fix T61497: Old keymap causes error on startupCampbell Barton
When a keymap has an error loading, don't make it active since it will be partially loaded and not usable.
2019-02-14Keymap: preference for alternate tap action for some pie menusCampbell Barton
This allows secondary keys on tap. Currently Z-key to toggle wireframe and tilde for navigation. This is currently experimental, if users like this the preference can be kept and used where appropriate.
2019-02-14Keymap: Alt-N to flip normalsCampbell Barton
Add shortcut since this has been removed from the context menu, now it's in the mesh normals menu which isn't so convenient to access. Shift-N is already used to recalculate normals, this fits the convention of Alt removing/reversing.
2019-02-13fix build on xcode with openmpArto Kitula
2019-02-13Fix T61446: (second part) Some items in editor and mode selectors are not ↵Bastien Montagne
translatable. That one is utterly ugly fix really, but unfortunately a proper one would require some changes to our RNA (or more precisely, pyrna) code, so that when we subscript a dynamically generated RNA collection, the item is somehow duplicated (and probably 'assigned' to its py object?), before the temp RNA array memory is freed...
2019-02-13Fix T61499: Missing Camera settings in props except Depth of FieldPhilipp Oeser
rB55c281415b67 removed 'BLENDER_RENDER' as a COMPAT_ENGINE but the cycles addon checks for this in its get_panels() function. Adding this back for now. Reviewers: brecht, billreynish Maniphest Tasks: T61499 Differential Revision: https://developer.blender.org/D4346
2019-02-13Cleanup: unused DNA struct membersCampbell Barton
- Timeline theme. - 3D view runtime variables. - Exclude EditLatt from SDNA.
2019-02-12Fix T61458: GP Ctrl + F doesn't do anythingAntonioya
This keymap was used in the old grease pencil and now must be removed. The keymaps for brush are: F: Change Radius Shift + F: Change strength Ctrl+F -> Removed.
2019-02-12Fix T61455: Import any add-on brokenPhilipp Oeser
recent split userpref.py out of wm.py (rB9ec944bbab7a) forgot to move 'module_filesystem_remove' there as well...
2019-02-11Fix T61376 Group Node Node Editor theme property is missing alpha channelSebastian Parborg
It is now possible to adjust the group node background alpha. The defaults are the same as before, but you can now adjust the alpha level via the theme preferences (and the alpha value is no longer hard coded).
2019-02-11Cleanup: commentsCampbell Barton
2019-02-11UI: Use icon in Dopesheet 'Toggle Graph Editor' menu item.Pablo Vazquez