Blender Git Loki
Git Commits -> Revision fa9b051
Revision fa9b051 by Sebastian Parborg (master) April 2, 2021, 12:44 (GMT) |
Fix T84520: Make the different weight paint code paths exclusive to each other Before this change, you could have the new sculpt symmetry code and the older weight paint symmetry code active at the same time. This would lead to users easily trashing their weigh paint data if they were not careful when switching between modes. Now the specific weight paint symmetry code is an exclusive toggle so the user can't accidentally mirror strokes and vertex groups at the same time. This also paves the way of supporting Y and Z symmetry in the future for weight groups mirroring if we decide to add it in the future. Reviewed By: Sybren Differential Revision: https://developer.blender.org/D10426 |
Commit Details:
Full Hash: fa9b05149c2ca3915a4fb2670c87a648d927336c
Parent Commit: e7a0a75
Lines Changed: +148, -34
11 Modified Paths:
/release/scripts/startup/bl_ui/space_view3d.py (+3, -3) (Diff)
/release/scripts/startup/bl_ui/space_view3d_toolbar.py (+12, -10) (Diff)
/source/blender/draw/intern/draw_cache_impl_mesh.c (+1, -1) (Diff)
/source/blender/editors/object/object_vgroup.c (+1, -1) (Diff)
/source/blender/editors/sculpt_paint/paint_vertex.c (+13, -6) (Diff)
/source/blender/editors/sculpt_paint/paint_vertex_weight_ops.c (+4, -3) (Diff)
/source/blender/editors/sculpt_paint/paint_vertex_weight_utils.c (+1, -1) (Diff)
/source/blender/makesdna/DNA_mesh_defaults.h (+1, -0) (Diff)
/source/blender/makesdna/DNA_mesh_types.h (+9, -5) (Diff)
/source/blender/makesrna/intern/rna_mesh.c (+6, -4) (Diff)
/source/blender/makesrna/intern/rna_object.c (+97, -0) (Diff)
/release/scripts/startup/bl_ui/space_view3d_toolbar.py (+12, -10) (Diff)
/source/blender/draw/intern/draw_cache_impl_mesh.c (+1, -1) (Diff)
/source/blender/editors/object/object_vgroup.c (+1, -1) (Diff)
/source/blender/editors/sculpt_paint/paint_vertex.c (+13, -6) (Diff)
/source/blender/editors/sculpt_paint/paint_vertex_weight_ops.c (+4, -3) (Diff)
/source/blender/editors/sculpt_paint/paint_vertex_weight_utils.c (+1, -1) (Diff)
/source/blender/makesdna/DNA_mesh_defaults.h (+1, -0) (Diff)
/source/blender/makesdna/DNA_mesh_types.h (+9, -5) (Diff)
/source/blender/makesrna/intern/rna_mesh.c (+6, -4) (Diff)
/source/blender/makesrna/intern/rna_object.c (+97, -0) (Diff)