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:
authorAlexander Gavrilov <angavrilov@gmail.com>2019-10-18 19:54:18 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2019-11-06 15:36:05 +0300
commit7728bfd4c45c634ba6b62e149176425ec5779945 (patch)
treeb4f10c71458572e87f4ca14e33e0754aef2661b6 /source/blender/makesrna/intern/rna_object_api.c
parente3f1f5bd006a206f81aa9bb20e833e8fc0d9728a (diff)
Constraints: remove special meaning of Local Space for parentless Objects.
In 2011 special handling was introduced, apparently for no other reason than to address a complaint in T25707 that World and Local space are equivalent for objects without parent. This causes issues and confusion, as mentioned in rB599c8a2c8e4. This special meaning of Local Space is not documented in the manual, and is not known to experienced riggers, so removing it should not be a problem. Differential Revision: https://developer.blender.org/D6095
Diffstat (limited to 'source/blender/makesrna/intern/rna_object_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_object_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_object_api.c b/source/blender/makesrna/intern/rna_object_api.c
index babf388bfc7..81f653e73be 100644
--- a/source/blender/makesrna/intern/rna_object_api.c
+++ b/source/blender/makesrna/intern/rna_object_api.c
@@ -323,7 +323,7 @@ static void rna_Object_mat_convert_space(Object *ob,
}
}
- BKE_constraint_mat_convertspace(ob, pchan, (float(*)[4])mat_ret, from, to, false);
+ BKE_constraint_mat_convertspace(ob, pchan, (float(*)[4])mat_ret, from, to);
}
static void rna_Object_calc_matrix_camera(Object *ob,