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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-03-01 12:25:14 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-03-01 12:25:14 +0300
commit2a731adae7d481b258e551db30c640660e81b4ea (patch)
tree26c78f27bc2273d8c391040aca8ada133089aba0 /source/blender/blenkernel/BKE_object.h
parent0451043045bb2c9a0194546a5d528dfc832b3c8b (diff)
Fix T62015: Duplicating object, rotating, pivot point not used
Was caused by another fix in the area, and root to the wrong though that transformation is only initialized from a fully evaluated dependency graph. The latter one is not a case when changing transformation mode. Solved by copying transform to an evaluated object.
Diffstat (limited to 'source/blender/blenkernel/BKE_object.h')
-rw-r--r--source/blender/blenkernel/BKE_object.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_object.h b/source/blender/blenkernel/BKE_object.h
index 66a3d96cbdc..58d648b4aa4 100644
--- a/source/blender/blenkernel/BKE_object.h
+++ b/source/blender/blenkernel/BKE_object.h
@@ -209,6 +209,9 @@ void BKE_object_tfm_protected_restore(
const ObjectTfmProtectedChannels *obtfm,
const short protectflag);
+void BKE_object_tfm_copy(
+ struct Object *object_dst,
+ const struct Object *object_src);
void BKE_object_eval_reset(
struct Object *ob_eval);