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:
authorJoshua Leung <aligorith@gmail.com>2010-03-17 14:34:27 +0300
committerJoshua Leung <aligorith@gmail.com>2010-03-17 14:34:27 +0300
commitbe3d5f9d5df90737c01338266efd72b3367b9e6c (patch)
treeafb137909b69c50ad3538b4e7de2fc3195d4eff0 /source/blender/blenkernel
parent1d4b93214520045e67eb535393d6056f41feaa54 (diff)
PyKeyingSet Bugfixes:
* With multiple objects selected, only one of the objects got keyframed. The code which was checking for duplicate paths was wrongly assuming to ignore the ID-block used still. * Not registering a Keying Set as 'builtin' would crash on startup. I've made all Keying Sets fallback to adding as if they were local for now, but a better solution is coming soon. * Fixed a typo in RNA function wrappers for the generator callback, since it was looking for the iterator only. This doesn't seem to have caused any problems (thankfully).
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/intern/anim_sys.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/source/blender/blenkernel/intern/anim_sys.c b/source/blender/blenkernel/intern/anim_sys.c
index 307ed1bfcd4..31743a6bd1a 100644
--- a/source/blender/blenkernel/intern/anim_sys.c
+++ b/source/blender/blenkernel/intern/anim_sys.c
@@ -557,15 +557,9 @@ KS_Path *BKE_keyingset_find_path (KeyingSet *ks, ID *id, const char group_name[]
KS_Path *ksp;
/* sanity checks */
- if ELEM(NULL, ks, rna_path)
+ if ELEM3(NULL, ks, rna_path, id)
return NULL;
- /* ID is optional for relative KeyingSets, but is necessary for absolute KeyingSets */
- if (id == NULL) {
- if (ks->flag & KEYINGSET_ABSOLUTE)
- return NULL;
- }
-
/* loop over paths in the current KeyingSet, finding the first one where all settings match
* (i.e. the first one where none of the checks fail and equal 0)
*/
@@ -573,7 +567,7 @@ KS_Path *BKE_keyingset_find_path (KeyingSet *ks, ID *id, const char group_name[]
short eq_id=1, eq_path=1, eq_index=1, eq_group=1;
/* id */
- if ((ks->flag & KEYINGSET_ABSOLUTE) && (id != ksp->id))
+ if (id != ksp->id)
eq_id= 0;
/* path */