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>2018-11-12 19:30:25 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2018-11-12 19:36:31 +0300
commit3b9700aa5171c7abb3fd14270ebb3a2b4e0e8b83 (patch)
treef3ba7e2bcabf497b8708dfce5108ce660a68dfe7 /source/blender/editors/object/object_relations.c
parent406452ec5d9ab3054800a31b32cfc5275592bd61 (diff)
Remove AnimMapper: it has been left unimplemented for almost ten years.
It was supposed to be a feature for substituting RNA paths on the fly, but has never been implemented, apart from a couple of structure definitions and passing around some always-NULL pointers. Now it gets in the way of refactoring NLA evaluation to use GHash for efficiency.
Diffstat (limited to 'source/blender/editors/object/object_relations.c')
-rw-r--r--source/blender/editors/object/object_relations.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c
index 0a35b572bbe..5c01f02c3ef 100644
--- a/source/blender/editors/object/object_relations.c
+++ b/source/blender/editors/object/object_relations.c
@@ -2063,9 +2063,6 @@ static void make_local_animdata_tag_strips(ListBase *strips)
if (strip->act) {
strip->act->id.tag &= ~LIB_TAG_PRE_EXISTING;
}
- if (strip->remap && strip->remap->target) {
- strip->remap->target->id.tag &= ~LIB_TAG_PRE_EXISTING;
- }
make_local_animdata_tag_strips(&strip->strips);
}
@@ -2082,10 +2079,6 @@ static void make_local_animdata_tag(AnimData *adt)
if (adt->tmpact) {
adt->tmpact->id.tag &= ~LIB_TAG_PRE_EXISTING;
}
- /* Remaps */
- if (adt->remap && adt->remap->target) {
- adt->remap->target->id.tag &= ~LIB_TAG_PRE_EXISTING;
- }
/* Drivers */
/* TODO: need to handle the ID-targets too? */