Fix T98168: Meta strips do not copy animation to another scene

Copy animation for strips that are inside metas.
This commit is contained in:
Richard Antalik 2022-06-14 20:12:03 +02:00
parent 6737f89e49
commit a59fedb0bf
Notes: blender-bot 2023-02-14 11:34:30 +01:00
Referenced by issue #98168, VSE meta strips do not copy animation over to another scene
1 changed files with 8 additions and 0 deletions

View File

@ -2389,6 +2389,13 @@ static void sequencer_copy_animation(Scene *scene, Sequence *seq)
return;
}
/* Add curves for strips inside meta strip. */
if (seq->type == SEQ_TYPE_META) {
LISTBASE_FOREACH (Sequence *, meta_child, &seq->seqbase) {
sequencer_copy_animation(scene, meta_child);
}
}
GSet *fcurves = SEQ_fcurves_by_strip_get(seq, &scene->adt->action->curves);
if (fcurves == NULL) {
return;
@ -2398,6 +2405,7 @@ static void sequencer_copy_animation(Scene *scene, Sequence *seq)
BLI_addtail(&fcurves_clipboard, BKE_fcurve_copy(fcu));
}
GSET_FOREACH_END();
BLI_gset_free(fcurves, NULL);
}