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-05Cleanup: remove contributors for CMake filesCampbell Barton
Following removal from C source code. See: 8c68ed6df16d8893
2019-02-03Cleanup: trailing commasCampbell Barton
Needed for clan-format not to wrap onto one line.
2019-02-01Cleanup: remove redundant, invalid info from headersCampbell Barton
BF-admins agree to remove header information that isn't useful, to reduce noise. - BEGIN/END license blocks Developers should add non license comments as separate comment blocks. No need for separator text. - Contributors This is often invalid, outdated or misleading especially when splitting files. It's more useful to git-blame to find out who has developed the code. See P901 for script to perform these edits.
2019-01-31Fix T59495, T59992, T59904, T59178, T60598: broken keyframed value editing.Brecht Van Lommel
This removes a bunch of animation/driver evaluations and recalc flags that should be redundant in the new depsgraph, and were incorrectly affecting the evaluated scene in a permanent way. Still two cases that could be removed if the depsgraph is improved, in BKE_object_handle_data_update and BKE_cachefile_update_frame. For physics subframe interpolation there are also still calls to BKE_object_where_is_calc that should ideally be removed as well, though they are not known to cause keyframing bugs. Differential Revision: https://developer.blender.org/D4274
2019-01-31Cleanup: style, unused variableCampbell Barton
2019-01-28Fix T59963: Can't manipulate hair keys with G, R, S or mirror transformsSergey Sharybin
Need to pass proper evaluated mesh to calculate hair matrix.
2019-01-28Cleanup: sort forward declarations of enum & structCampbell Barton
Done using: source/tools/utils_maintenance/c_sort_blocks.py
2019-01-26Cleanup: remove redundant BKE/BLI/BIF headersCampbell Barton
2019-01-22UV Editor: support snapping to center of pixels, in addition to corners.Joep Peters
Differential Revision: https://developer.blender.org/D4150
2019-01-16GP: Use multiframe falloff in Shear transformAntonioya
2019-01-16GP: Use multiframe falloff for Bend transformationAntonioya
2019-01-15Cleanup: commas at the end of enumsCampbell Barton
Without this clang-format may wrap them onto a single line.
2019-01-15Cleanup: comment line length (editors)Campbell Barton
Prevents clang-format wrapping text before comments.
2019-01-15Fix T60498: Auto IK doesn't work immediately.Brecht Van Lommel
2019-01-15Correct last commitCampbell Barton
2019-01-15Fix T60507: Constrained transform shows all axesCampbell Barton
Regression in 579c01da600dd Move values_modal_offset use out of applyMouseInput to resolve order of initialization issue.
2019-01-14Fix T57852: Mesh X Mirror option not workingCampbell Barton
D3869 by @lichtwerk w/ own edits
2019-01-14Cleanup: move comments above definitionsCampbell Barton
For clang-format not to wrap definitions.
2019-01-11Fix T60411: crash in multi-object pose mode, with some armatures in rest pose.Brecht Van Lommel
2019-01-10Support proportional edit scaling on dopesheet keyframesPhilipp Oeser
Fixes T60361 Reviewers: brecht Maniphest Tasks: T60361 Differential Revision: https://developer.blender.org/D4188
2019-01-10Fix gizmo orientation w/ shear toolCampbell Barton
2019-01-08Fix inconsistent naming and behavior for base visible/selected/editable.Brecht Van Lommel
Fixes T60251.
2019-01-08Cleanup: comments causing bad clang-format outputCampbell Barton
2019-01-07Cleanup: add trailing commas to structsCampbell Barton
2019-01-06Cleanup: add trailing commas to structsCampbell Barton
Needed for clang formatting to workaround bug/limit, see: T53211
2019-01-04Fix T59546: Grease Pencil Edit: Rotation around individual origins errorAntonioya
Thanks to Habib Gahbiche (@zazizizou) for helping fixing this bug. See D4156.
2019-01-03Transform: default shrink/fatten even-offset to falseCampbell Barton
Changed for 2.8 but this cases spikes for some geometry, see: T59968
2019-01-02Fix (unreported): unpredictable crashes when it is done snap after automerge.mano-wii
The `em->tottri` of an evaluated object can be different from the actual amount of looptris.
2019-01-02Fix T59886: Missing transform gizmo updateCampbell Barton
2018-12-28GP: Rename GP_STROKE_RECALC_CACHE to GP_STROKE_RECALC_GEOMETRYAntonioya
The GP_STROKE_RECALC_CACHE identifier was changed to GP_STROKE_RECALC_GEOMETRY because the previous name was confusing and could be confused with the recalculation of the Draw Manager cache.
2018-12-27Fix T59865: UV editor vertex snap to active does not make any sense.Sebastian Parborg
Differential Revision: https://developer.blender.org/D4129
2018-12-27Cleanup: styleCampbell Barton
2018-12-24Fix/cleanup another bunch of UI messages issues.Bastien Montagne
Also (mostly in comments): behaviour -> behavior (we use American English).
2018-12-21GP: Move calculated center only for selected strokesAntonioya
2018-12-21Cleanup: unused argCampbell Barton
2018-12-20GP: Use only selected points to calc transform centerAntonioya
2018-12-20GP: Enable center for Local Origins onlyAntonioya
This produces very interesting effects when move using proportional editing.
2018-12-20GP: Undo center calculationAntonioya
This is breaking the transformation with falloff enabled.
2018-12-20Fix T59083: normal transform orientation ignores absolute grid snap.Sebastian Parborg
Absolute grid snap now takes into account the transform local axis. Differential Revision: https://developer.blender.org/D4069
2018-12-20Cleanup: namingCampbell Barton
2018-12-20Fix crash clicking on trackball widgetCampbell Barton
Missing check in newly added gizmo orientations.
2018-12-19UI: expose gizmo orientation as a single enumCampbell Barton
Avoids awkward logic from the popover, by faking an extra item in the enum.
2018-12-19UI: move gizmo orientation settings into popoverCampbell Barton
Instead of link toggle with enum, use a single popover that contains both settings. The code for this isn't nice - needing 3x panels for now. See D4075
2018-12-19Merge branch 'master' into blender2.8Philipp Oeser
2018-12-19Fix Proportional Edit Projected 2D method skiped center calculationPhilipp Oeser
rBa520e7c85c83 defined T_OVERRIDE_CENTER(1 << 25) which was already in use T_PROP_PROJECTED(1 << 25) thus skipping center calculation Fixes T58882, T59518 Reviewers: campbellbarton, brecht Maniphest Tasks: T58882, T59518 Differential Revision: https://developer.blender.org/D4100
2018-12-19Fix T59237: Instancing on a path doesn't do anythingSergey Sharybin
This commit makes it so curve path parent solving accepts an explicit arguments for both time and curve speed flag, making it so we don't have to mock around with scene's frame. One unfortunate issue still is that if the instancing object is used for something else, we might be running into a threading conflict. Possible solution would be to create a temp copy of an object, but then it will be an issue of preventing drivers from modifying other datablocks. At least the original issue is fixed now, and things behave same as in older Blender version. Additionally, the global variable which was defining curve speed flag behavior is gone now!
2018-12-19Gizmo: optional custom orientations for transformCampbell Barton
This aims to resolve a conflict where some users want to keep keyboard axis setting global, even when the orientation is set to something else. Move/rotate/scale can optionally each have a separate orientation. Some UI changes will be made next.
2018-12-19Transform: use the scenes transform orientationCampbell Barton
- Use the user orientation when pressing XYZ keys, second press switches to global. - Pressing again switches to global, or local if you're have global orientation set. The option for gizmos to have their own orientations will be added, see: D4075
2018-12-19Fix T57139: Transform overlay shows even when disabledCampbell Barton
Transform bypasses the gizmo API for drawing overlays, so custom checks are needed. Also don't draw the gizmo in other windows when transforming.
2018-12-19Merge branch 'master' into blender2.8Campbell Barton