Fix T61619
Details
Details
- Reviewers
Brecht Van Lommel (brecht) - Maniphest Tasks
- T61619: Some VSE attributes with keyframes are not sensibly evaluated when the scene is referenced as a strip from another VSE scene
- Commits
- rBSa372e5e426e4: Fix T61619: Some VSE attributes with keyframes are not sensibly evaluated when…
rBa372e5e426e4: Fix T61619: Some VSE attributes with keyframes are not sensibly evaluated when…
Diff Detail
Diff Detail
- Repository
- rB Blender
Event Timeline
Comment Actions
| source/blender/blenkernel/intern/sequencer.c | ||
|---|---|---|
| 3668 | Maybe I should use BKE_animsys_evaluate_all_animation here? Not sure if there is maybe even some newer way, that is more preferable. | |
| source/blender/blenkernel/intern/sequencer.c | ||
|---|---|---|
| 3667 | This function is used for metastrips, in which case seq->scene would be NULL and this code shouldn't run? | |
| 3668 | I guess BKE_animsys_evaluate_all_animation would be more correct, as the scene strips may be using animated datablocks. I'm not sure if there's a better way for this currently. Ideally the sequencer and compositor would better integrate into the dependency graph, but manually updating animation is how it works for now. | |