Blender Git Commit Log
Git Commits -> Revision d23894d
Revision d23894d by Pablo Dobarro (master) December 16, 2020, 16:08 (GMT) |
Sculpt: Multires Displacement Smear This tool implements smearing for multires displacement over the limit surface, similar to how smearing for colors and topology slide works. When used the displacement values of the vertices "slide" over the topology, creating the effect of smearing the surface detail. As the brush just modifies displacement values instead of coordinates, the total displacement of the affected area doesn't change. This means that this smearing effect can be used multiple times over the same area without generating any artifacts in the topology. When the brush is used with the pinch or expand smear modes, displacement differences are pushed into the same area, creating hard surface effects without pinching the topology. As any other brush that relies on the limit surface (like displacement erasers), this will work better after using apply base. Reviewed By: sergey, JulienKaspar, dbystedt Differential Revision: https://developer.blender.org/D9659 |
Commit Details:
Full Hash: d23894d3ef3f019eeb88ef3da77e8416c6f70f29
Parent Commit: f3ab123
Lines Changed: +179, -1
8 Modified Paths:
/release/scripts/startup/bl_ui/properties_paint_common.py (+4, -0) (Diff)
/source/blender/blenkernel/intern/brush.c (+9, -0) (Diff)
/source/blender/blenloader/intern/versioning_defaults.c (+8, -0) (Diff)
/source/blender/editors/sculpt_paint/sculpt.c (+151, -0) (Diff)
/source/blender/editors/sculpt_paint/sculpt_intern.h (+4, -0) (Diff)
/source/blender/makesdna/DNA_brush_enums.h (+1, -0) (Diff)
/source/blender/makesdna/DNA_brush_types.h (+1, -1) (Diff)
/source/blender/makesrna/intern/rna_brush.c (+1, -0) (Diff)
/source/blender/blenkernel/intern/brush.c (+9, -0) (Diff)
/source/blender/blenloader/intern/versioning_defaults.c (+8, -0) (Diff)
/source/blender/editors/sculpt_paint/sculpt.c (+151, -0) (Diff)
/source/blender/editors/sculpt_paint/sculpt_intern.h (+4, -0) (Diff)
/source/blender/makesdna/DNA_brush_enums.h (+1, -0) (Diff)
/source/blender/makesdna/DNA_brush_types.h (+1, -1) (Diff)
/source/blender/makesrna/intern/rna_brush.c (+1, -0) (Diff)