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
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-06-18 20:49:53 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-06-20 14:04:51 +0300
commit4234cddda9ed59e5a7fff7043a2add2aaf158d23 (patch)
tree9efba3cbdfb86b38bceb8def7fae1a5b90801620 /source/blender/makesdna/DNA_layer_types.h
parent5e968a996a5397a14d00c49e67c74b993859a1d6 (diff)
Objects: support for hiding all objects in a collection.
In the outliner there are now icons for it, Ctrl+Click isolates a single collections. In the 3D view, Ctrl+H key opens a menu that is more or less the equivalent of the old layer buttons in the header. Regular Click isolates the collection, Shift+Click toggle the collection visibility. Pressing number keys and letters works in this menu, which can help for quickly selecting a specific collection. Shortcuts for quick switching by just pressing 1/2/3/.. keys are available again. The order can be confusing with nested collections, but that seems unavoidable. The first numbers control the top level collections, and then sub collections if numbers are left. Remaining design issues: * The 3D view menu needs to be improved: support for sub collections, staying open on shift+click, access from the 3D view header somewhere, shortcut key display. * Currently collection hiding just controls per-object hiding, we plan to separate this state still so alt+H doesn't affect collection hiding.
Diffstat (limited to 'source/blender/makesdna/DNA_layer_types.h')
-rw-r--r--source/blender/makesdna/DNA_layer_types.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/source/blender/makesdna/DNA_layer_types.h b/source/blender/makesdna/DNA_layer_types.h
index f7536ec0df5..6b4dcc39005 100644
--- a/source/blender/makesdna/DNA_layer_types.h
+++ b/source/blender/makesdna/DNA_layer_types.h
@@ -91,15 +91,15 @@ typedef struct ViewLayer {
/* Base->flag */
enum {
- BASE_SELECTED = (1 << 0),
- BASE_VISIBLED = (1 << 1),
- BASE_SELECTABLED = (1 << 2),
- BASE_FROMDUPLI = (1 << 3),
+ BASE_SELECTED = (1 << 0), /* Object is selected. */
+ BASE_VISIBLED = (1 << 1), /* Object is visible. */
+ BASE_SELECTABLED = (1 << 2), /* Object can be selected. */
+ BASE_FROMDUPLI = (1 << 3), /* Object comes from duplicator. */
/* BASE_DEPRECATED = (1 << 4), */
BASE_FROM_SET = (1 << 5), /* To be set only by the depsgraph */
- BASE_VISIBLE_VIEWPORT = (1 << 6),
- BASE_VISIBLE_RENDER = (1 << 7),
- BASE_HIDE = (1 << 8),
+ BASE_VISIBLE_VIEWPORT = (1 << 6), /* Object is visible in viewport. */
+ BASE_VISIBLE_RENDER = (1 << 7), /* Object is visible in final render */
+ BASE_HIDE = (1 << 8), /* Object is hidden for editing. */
};
/* LayerCollection->flag */
@@ -113,8 +113,9 @@ enum {
/* Layer Collection->runtime_flag */
enum {
- LAYER_COLLECTION_HAS_VISIBLE_OBJECTS = (1 << 0),
- LAYER_COLLECTION_HAS_SELECTED_OBJECTS = (1 << 1),
+ LAYER_COLLECTION_HAS_OBJECTS = (1 << 0),
+ LAYER_COLLECTION_HAS_VISIBLE_OBJECTS = (1 << 1),
+ LAYER_COLLECTION_HAS_ENABLED_OBJECTS = (1 << 2),
};
/* ViewLayer->flag */