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-11-02Gpencil: Don't use checkbox for stroke duplication modifier.temp-npr-gpencil-modifiersYimingWu
2019-11-02Merge remote-tracking branch 'origin/master' into temp-npr-gpencil-modifiersYimingWu
2019-11-02Gpencil: Use new_from_existing_style() to create stroke in the modifier.YimingWu
2019-11-02Gpencil: Add BKE_gpencil_add_stroke_existing_style() function.YimingWu
This additionally copies the temp drawing color fields in gps->runtime. So that when adding new strokes in the modifier the style is preserved.
2019-11-02Gpencil: Add tip length to length modifier.YimingWu
So that we can better align the tip points when extending and avoid jittering.
2019-10-31Merge branch 'blender-v2.81-release'Pablo Dobarro
2019-10-31Paint: Option to disable antialiasingPablo Dobarro
You may want to disable antialiasing if you are working with pixel art or low resolution textures. It is enabled by default. Reviewed By: jbakker, campbellbarton Differential Revision: https://developer.blender.org/D6044
2019-10-30Merge remote-tracking branch 'origin/master' into temp-npr-gpencil-modifiersYimingWu
2019-10-29Merge branch 'blender-v2.81-release'Campbell Barton
2019-10-29Error in last commitCampbell Barton
2019-10-29Cleanup: quiet TBB deprecation warningCampbell Barton
2019-10-28Merge branch 'blender-v2.81-release'Campbell Barton
2019-10-28CMake: add missing headers, use space before commentsCampbell Barton
2019-10-25Merge branch 'blender-v2.81-release'Campbell Barton
2019-10-25Preferences: remove keymap items created with invalid data pathCampbell Barton
Before T65397 was fixed, invalid "(null)" data paths were being created. Remove these keymap items from preferences.
2019-10-24Merge branch 'blender-v2.81-release'Campbell Barton
2019-10-24Fix crash drawing the paint cursor over the redo regionCampbell Barton
Also fix CTX_wm_region_view3d which didn't check the region type.
2019-10-23Fix T70845: Crash when switching scene of scene strip.Richard Antalik
Crash on assert in `sound_verify_evaluated_id()` Reviewed By: sergey Maniphest Tasks: T70845 Differential Revision: https://developer.blender.org/D6104
2019-10-23Fix T70845: Crash when switching scene of scene strip.Richard Antalik
Crash on assert in `sound_verify_evaluated_id()` Reviewed By: sergey Maniphest Tasks: T70845 Differential Revision: https://developer.blender.org/D6104
2019-10-22Cleanup: unused variables, enums, spellingCampbell Barton
2019-10-21Merge remote-tracking branch 'origin/master' into temp-npr-gpencil-modifiersYimingWu
2019-10-20Shrinkwrap: improve numerical stability of Target Normal Project.Alexander Gavrilov
* Add proper adjustment for scale in the solver epsilon computation. * Run at least one full iteration of the solver, even if the initial state meets the epsilon requirement. * When applying offset, blend normal into the offset direction as the initial point moves very close to the target mesh. Also random improvements to debug trace output in the console.
2019-10-20Cleanup: format fixes.YimingWu
2019-10-20Gpencil: Preserve runtime color when splitting strokes.YimingWu
2019-10-17Merge branch 'blender-v2.81-release'Sergey Sharybin
2019-10-17Fix T70901: Pose bone with Armature Constraint moves in wrong directionSergey Sharybin
A regression since previous fix for proxy. Restore old code for copying values to an original pose channel.
2019-10-17Merge remote-tracking branch 'origin/master' into temp-npr-gpencil-modifiersYimingWu
2019-10-17Merge branch 'blender-v2.81-release'Sergey Sharybin
2019-10-17Fix T70740: Clicking on proxy bone makes original one jump to initial locationSergey Sharybin
Caused by what appears to be a missing flush from evaluated bone back to original, which then makes it so copy-on-write operation happening after click (to synchronize selection flags) pushes original bone to its initial position. Differential Revision: https://developer.blender.org/D6051
2019-10-17Cleanup: Fix naming of a functionSergey Sharybin
2019-10-16Merge remote-tracking branch 'origin/blender-v2.81-release'Dalai Felinto
2019-10-16Fix multi-object edit mode and local view/collectionsDalai Felinto
Before this patch you could go to a local view with a single object, while you had other objects also in edit mode, and your operators would affect all objects even the ones outside your local view (same for local collection). Differential Revision: https://developer.blender.org/D6064
2019-10-16Cleanup: warningsCampbell Barton
2019-10-16UI: Remember ID-Filter in-between File Browser callsJulian Eisel
This adds the ID-Filters visible on append/link to the settings the file browser remembers, potentially storing them in the Preferences. Artists in the studio here requested this. They typically have to set up the same or similar settings every time, so this saves them from that.
2019-10-16Merge branch 'blender-v2.81-release'Campbell Barton
2019-10-16Fix T70850: Scene.frame_set doesn't update camera from markersCampbell Barton
2019-10-15Merge branch 'blender-v2.81-release'Dalai Felinto
2019-10-15Fix T70838: crash on cycles render after recent fixDalai Felinto
My bad for not figuring out how to run our unittests since I got back to Windows.
2019-10-15Merge branch 'blender-v2.81-release'Philipp Oeser
2019-10-15Cleanup: clang format for rBb77da65e8c4dPhilipp Oeser
2019-10-15Merge branch 'blender-v2.81-release'Philipp Oeser
2019-10-15Fix T70667: crash playing animation (after deleting rigid body obj)Philipp Oeser
Was crashing due to RBW mssing shared->physics_world [which can happen when undoing the deletion of the last object in the world]. This can be gained back by BKE_rigidbody_validate_sim_world. Reviewed By: mont29 Maniphest Tasks: T70667 Differential Revision: https://developer.blender.org/D6037
2019-10-15Merge branch 'blender-v2.81-release'Philipp Oeser
2019-10-15Fix T68700: Incorrect 'absolute' timing of animated masks in the VideoPhilipp Oeser
Sequence Editor Code in 'seq_render_mask' will effectively do BKE_mask_evaluate(mask_temp, mask->sfra + (cfra - fra_offset), true) where 'fra_offset' is zero for absolute and seq->start for relative. If we really want the scene's current frame (as advertised) if Mask Time is set to Absolute (effectively ignoring the Mask Settings start/end) we need to change the fra_offset from zero to mask->sfra. Also BKE_animsys_evaluate_animdata should take mask->sfra into account as well (otherwise mask animation [points] and other animation [e.g. opacity] will run out of sync) Reviewers: campbellbarton, ISS Maniphest Tasks: T68700 Differential Revision: https://developer.blender.org/D5495
2019-10-15Merge branch 'blender-v2.81-release'Campbell Barton
2019-10-15Fix scan-fill normal flipping for displist & mask fillingCampbell Barton
Missed from fix for T70594 which reversed the normals, Resolves T70809
2019-10-15Merge branch 'blender-v2.81-release'Dalai Felinto
2019-10-15Fix T70670: Hidden collections are still rendered by Cycles in the ViewportDalai Felinto
Now local collections are fully working with cycles preview, while the collection visibility bug is fixed. Local collections were not working with cycles viewport even before the recent commit to allow users to show collections that are hidden in the view layer. It just got worse with said commit (0812949bbc3d). Differential Revision: https://developer.blender.org/D6034
2019-10-15Fix T69644 / T68586: objects flag unsynced when drag hidden collectionsDalai Felinto
That would lead to crashes and other issues. The solution is not elegant though, it involves resyncing all the collections again. Differential Revision: https://developer.blender.org/D6043
2019-10-14Merge branch 'blender-v2.81-release'Antonio Vazquez