Blender Git Loki
Git Commits -> Revision b77da65
Revision b77da65 by Philipp Oeser (master) October 15, 2019, 08:06 (GMT) |
Fix T68700: Incorrect 'absolute' timing of animated masks in the Video Sequence Editor Code in 'seq_render_mask' will effectively do BKE_mask_evaluate(mask_temp, mask->sfra + (cfra - fra_offset), true) where 'fra_offset' is zero for absolute and seq->start for relative. If we really want the scene's current frame (as advertised) if Mask Time is set to Absolute (effectively ignoring the Mask Settings start/end) we need to change the fra_offset from zero to mask->sfra. Also BKE_animsys_evaluate_animdata should take mask->sfra into account as well (otherwise mask animation [points] and other animation [e.g. opacity] will run out of sync) Reviewers: campbellbarton, ISS Maniphest Tasks: T68700 Differential Revision: https://developer.blender.org/D5495 |
Commit Details:
Full Hash: b77da65e8c4d8deb5a27e29f5ba518f02fc1c35d
Parent Commit: fa76f08
Lines Changed: +3, -2