Blender Git Commit Log
Git Commits -> Revision aa64fd6
Revision aa64fd6 by Julian Eisel (master) December 27, 2020, 21:45 (GMT) |
UI: List library overrides in the Outliner Having a centeral place to find a list of all library overrides should be useful for managing production scenes where library overrides are used a lot. This change adds the individually overridden properties of a data-block under the data-block itself. Just how we show modifiers, constraints or pose channels there. This way we can also expose library override operations/options better in future. There's also a filter option for the library overrides now, so they can be hidden. It is only available in the View Layer display mode though, like the other filter options. One internal change this has to do is adding more informative return values to undo pushes and the library override functions called by it. That way we can send a notifier when library overrides change for the Outliner to know when to rebuild the tree. Differential Revision: https://developer.blender.org/D7631 Reviewed by: Andy Goralczyk, Bastien Montagne, William Reynish |
Commit Details:
Full Hash: aa64fd69e733e49317101ea60299f2179830ae95
Parent Commit: 960a0b8
Lines Changed: +149, -35
16 Modified Paths:
/release/scripts/startup/bl_ui/space_outliner.py (+4, -0) (Diff)
/source/blender/blenkernel/BKE_lib_override.h (+5, -1) (Diff)
/source/blender/blenkernel/BKE_undo_system.h (+11, -5) (Diff)
/source/blender/blenkernel/intern/lib_override.c (+44, -10) (Diff)
/source/blender/blenkernel/intern/undo_system.c (+14, -10) (Diff)
/source/blender/blenloader/intern/versioning_280.c (+1, -1) (Diff)
/source/blender/editors/space_outliner/outliner_dragdrop.c (+1, -1) (Diff)
/source/blender/editors/space_outliner/outliner_draw.c (+4, -0) (Diff)
/source/blender/editors/space_outliner/outliner_edit.c (+2, -1) (Diff)
/source/blender/editors/space_outliner/outliner_tree.c (+36, -0) (Diff)
/source/blender/editors/space_outliner/space_outliner.c (+6, -2) (Diff)
/source/blender/editors/undo/ed_undo.c (+7, -1) (Diff)
/source/blender/makesdna/DNA_outliner_types.h (+2, -0) (Diff)
/source/blender/makesdna/DNA_space_types.h (+4, -3) (Diff)
/source/blender/makesrna/intern/rna_space.c (+7, -0) (Diff)
/source/blender/windowmanager/WM_types.h (+1, -0) (Diff)
/source/blender/blenkernel/BKE_lib_override.h (+5, -1) (Diff)
/source/blender/blenkernel/BKE_undo_system.h (+11, -5) (Diff)
/source/blender/blenkernel/intern/lib_override.c (+44, -10) (Diff)
/source/blender/blenkernel/intern/undo_system.c (+14, -10) (Diff)
/source/blender/blenloader/intern/versioning_280.c (+1, -1) (Diff)
/source/blender/editors/space_outliner/outliner_dragdrop.c (+1, -1) (Diff)
/source/blender/editors/space_outliner/outliner_draw.c (+4, -0) (Diff)
/source/blender/editors/space_outliner/outliner_edit.c (+2, -1) (Diff)
/source/blender/editors/space_outliner/outliner_tree.c (+36, -0) (Diff)
/source/blender/editors/space_outliner/space_outliner.c (+6, -2) (Diff)
/source/blender/editors/undo/ed_undo.c (+7, -1) (Diff)
/source/blender/makesdna/DNA_outliner_types.h (+2, -0) (Diff)
/source/blender/makesdna/DNA_space_types.h (+4, -3) (Diff)
/source/blender/makesrna/intern/rna_space.c (+7, -0) (Diff)
/source/blender/windowmanager/WM_types.h (+1, -0) (Diff)