[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [45511] trunk/blender/source/blender/ makesrna/intern/rna_scene.c: Fix #30754: motion blur shutter was animateable while this is actually not

Brecht Van Lommel brechtvanlommel at pandora.be
Tue Apr 10 17:43:43 CEST 2012


Revision: 45511
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=45511
Author:   blendix
Date:     2012-04-10 15:43:42 +0000 (Tue, 10 Apr 2012)
Log Message:
-----------
Fix #30754: motion blur shutter was animateable while this is actually not
supported.

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-04-10 14:59:06 UTC (rev 45510)
+++ trunk/blender/source/blender/makesrna/intern/rna_scene.c	2012-04-10 15:43:42 UTC (rev 45511)
@@ -3499,6 +3499,7 @@
 	RNA_def_property_range(prop, 0.01f, 10.0f);
 	RNA_def_property_ui_range(prop, 0.01, 2.0f, 1, 0);
 	RNA_def_property_ui_text(prop, "Shutter", "Time taken in frames between shutter open and close");
+	RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
 	RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL);
 	
 	/* border */




More information about the Bf-blender-cvs mailing list