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:
authorCampbell Barton <ideasman42@gmail.com>2019-02-18 02:38:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-18 02:41:04 +0300
commit022f3392714bc146f43f4000930939f524b82235 (patch)
tree9d729a3786db7190d5abac6a257e1af040cfc0eb /source/blender/blenkernel/intern/object_update.c
parentcf966f3b38a9a53dbabf7d7ebdec419fd03e2b99 (diff)
DNA: rename Collection.dupli_ofs -> instance_collection
Diffstat (limited to 'source/blender/blenkernel/intern/object_update.c')
-rw-r--r--source/blender/blenkernel/intern/object_update.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/object_update.c b/source/blender/blenkernel/intern/object_update.c
index cb8bb47a577..0ecb088e57e 100644
--- a/source/blender/blenkernel/intern/object_update.c
+++ b/source/blender/blenkernel/intern/object_update.c
@@ -308,7 +308,7 @@ bool BKE_object_eval_proxy_copy(Depsgraph *depsgraph,
mul_m4_m4m4(object->obmat, imat, object->proxy_from->obmat);
/* Should always be true. */
if (obg->instance_collection) {
- add_v3_v3(object->obmat[3], obg->instance_collection->dupli_ofs);
+ add_v3_v3(object->obmat[3], obg->instance_collection->instance_offset);
}
}
else {