[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [26632] trunk/blender/source/blender/ makesrna/intern/rna_scene.c: Disabled ability to animate FPS setting, since this was producing weird and crazy effects for when viewing timecodes .

Joshua Leung aligorith at gmail.com
Fri Feb 5 22:23:08 CET 2010


Revision: 26632
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=26632
Author:   aligorith
Date:     2010-02-05 22:23:07 +0100 (Fri, 05 Feb 2010)

Log Message:
-----------
Disabled ability to animate FPS setting, since this was producing weird and crazy effects for when viewing timecodes.

See http://www.pasteall.org/blend/1769 and switch to timecode displays in the timeline (Ctrl T) to see the effects of this (in an old build).

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	2010-02-05 18:39:04 UTC (rev 26631)
+++ trunk/blender/source/blender/makesrna/intern/rna_scene.c	2010-02-05 21:23:07 UTC (rev 26632)
@@ -2017,12 +2017,14 @@
 
 	prop= RNA_def_property(srna, "fps", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "frs_sec");
+	RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
 	RNA_def_property_range(prop, 1, 120);
 	RNA_def_property_ui_text(prop, "FPS", "Framerate, expressed in frames per second.");
 	RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL);
 	
 	prop= RNA_def_property(srna, "fps_base", PROP_FLOAT, PROP_NONE);
 	RNA_def_property_float_sdna(prop, NULL, "frs_sec_base");
+	RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
 	RNA_def_property_range(prop, 0.1f, 120.0f);
 	RNA_def_property_ui_text(prop, "FPS Base", "Framerate base");
 	RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL);





More information about the Bf-blender-cvs mailing list