[Bf-blender-cvs] [a42cae16008] master: Fix T55192: Speed fx applied to scene messed up animation

Richard Antalik noreply at git.blender.org
Tue Jul 9 00:17:09 CEST 2019


Commit: a42cae160082afaf5507fa558fbaf5d1d5987f17
Author: Richard Antalik
Date:   Mon Jul 8 14:53:40 2019 -0700
Branches: master
https://developer.blender.org/rBa42cae160082afaf5507fa558fbaf5d1d5987f17

Fix T55192: Speed fx applied to scene messed up animation

Don't update animdata after rendering scene
Rendering host scene from sequencer is not supported, removed code is unnecessary.

Reviewed By: brecht

Differential Revision: https://developer.blender.org/D5199

===================================================================

M	source/blender/blenkernel/intern/sequencer.c

===================================================================

diff --git a/source/blender/blenkernel/intern/sequencer.c b/source/blender/blenkernel/intern/sequencer.c
index ceb06c29f09..c2d51b72b29 100644
--- a/source/blender/blenkernel/intern/sequencer.c
+++ b/source/blender/blenkernel/intern/sequencer.c
@@ -3740,9 +3740,6 @@ static ImBuf *do_render_strip_uncached(const SeqRenderData *context,
         ibuf = seq_render_scene_strip(context, seq, nr, cfra);
       }
 
-      /* Scene strips update all animation, so we need to restore original state.*/
-      BKE_animsys_evaluate_all_animation(context->bmain, context->depsgraph, context->scene, cfra);
-
       break;
     }



More information about the Bf-blender-cvs mailing list