[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [47569] trunk/blender/source/blender/ makesrna/intern/rna_scene.c: Bugfix [#31723] Renderer (internal) ignores keyframes on 'Compositing' checkbox

Joshua Leung aligorith at gmail.com
Thu Jun 7 12:56:11 CEST 2012


Revision: 47569
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=47569
Author:   aligorith
Date:     2012-06-07 10:55:53 +0000 (Thu, 07 Jun 2012)
Log Message:
-----------
Bugfix [#31723] Renderer (internal) ignores keyframes on 'Compositing' checkbox
for animations

Pipeline options such as Use Compositing and Use Sequencer cannot be animated
due to the way that they are implemented now, so adding these to the list of
render properties that we cannot animate.

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_scene.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_scene.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_scene.c	2012-06-07 09:32:39 UTC (rev 47568)
+++ trunk/blender/source/blender/makesrna/intern/rna_scene.c	2012-06-07 10:55:53 UTC (rev 47569)
@@ -3660,6 +3660,7 @@
 	
 	prop = RNA_def_property(srna, "use_compositing", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "scemode", R_DOCOMP);
+	RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
 	RNA_def_property_ui_text(prop, "Compositing",
 	                         "Process the render result through the compositing pipeline, "
 	                         "if compositing nodes are enabled");
@@ -3667,6 +3668,7 @@
 	
 	prop = RNA_def_property(srna, "use_sequencer", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "scemode", R_DOSEQ);
+	RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
 	RNA_def_property_ui_text(prop, "Sequencer",
 	                         "Process the render (and composited) result through the video sequence "
 	                         "editor pipeline, if sequencer strips exist");




More information about the Bf-blender-cvs mailing list