Fix T38836: change screencast timer limits so you can record with higher FPS.

Note that the screencast implementation is quite poor and that you may not even
get the requested FPS, the timing system here is not reliable.
This commit is contained in:
Brecht Van Lommel
2014-02-25 19:25:44 +01:00
parent 8cfb5e91ea
commit 593d856217

View File

@@ -3893,12 +3893,12 @@ static void rna_def_userdef_system(BlenderRNA *brna)
prop = RNA_def_property(srna, "screencast_fps", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, NULL, "scrcastfps");
RNA_def_property_range(prop, 10, 50);
RNA_def_property_range(prop, 10, 100);
RNA_def_property_ui_text(prop, "FPS", "Frame rate for the screencast to be played back");
prop = RNA_def_property(srna, "screencast_wait_time", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, NULL, "scrcastwait");
RNA_def_property_range(prop, 50, 1000);
RNA_def_property_range(prop, 10, 1000);
RNA_def_property_ui_text(prop, "Wait Timer (ms)",
"Time in milliseconds between each frame recorded for screencast");