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:
authorLukas Tönne <lukas.toenne@gmail.com>2014-07-09 14:17:05 +0400
committerLukas Tönne <lukas.toenne@gmail.com>2014-07-09 14:25:54 +0400
commitc9ac51ec1ffd77efcff758bc42a37fd02859a4bc (patch)
tree6538125006d72e391d9f3f59bd0611f9dcbe348a /source/blender/makesdna/DNA_object_types.h
parent6c70559f581a6e4c9047958e247e0b876a045bf8 (diff)
Fix T40164: Linking a Group of linked Groups don't take Dupli Visibility
correctly. Problem was that object layers are defined by duplis as the top-level duplicator layers. This happens //during// the duplilist construction, which breaks group layer checks for subsequent instances and hides them. Now the duplilist generators leave Object DNA untouched, the modification of layers for drawing, rendering, etc. happens afterward in the duplilist_apply/restore functions, as a kind of second pass.
Diffstat (limited to 'source/blender/makesdna/DNA_object_types.h')
-rw-r--r--source/blender/makesdna/DNA_object_types.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_object_types.h b/source/blender/makesdna/DNA_object_types.h
index 811c33befca..2e3cd878900 100644
--- a/source/blender/makesdna/DNA_object_types.h
+++ b/source/blender/makesdna/DNA_object_types.h
@@ -315,7 +315,6 @@ typedef struct ObHook {
typedef struct DupliObject {
struct DupliObject *next, *prev;
struct Object *ob;
- unsigned int origlay, pad;
float mat[4][4];
float orco[3], uv[2];