Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2008-11-27 02:13:59 +0300
committerJoshua Leung <aligorith@gmail.com>2008-11-27 02:13:59 +0300
commit2fdc41ccf49f0b2f574ba1916cd0ee1a145d53f3 (patch)
tree1713f090058477e1eab896038a83c6021b63b560 /source
parent8e8e2c3ba9508e99ed4caa062b5d6cdf1a0f1914 (diff)
Added access for start/end frames in RNA.
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 236a78d837a..22ae54c6300 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -55,6 +55,20 @@ static void rna_Scene_layer_set(PointerRNA *ptr, int index, int value)
}
}
+static void rna_Scene_start_frame_set(PointerRNA *ptr, int value)
+{
+ Scene *data= (Scene*)ptr->data;
+ CLAMP(value, 1, data->r.efra);
+ data->r.sfra= value;
+}
+
+static void rna_Scene_end_frame_set(PointerRNA *ptr, int value)
+{
+ Scene *data= (Scene*)ptr->data;
+ CLAMP(value, data->r.sfra, 300000);
+ data->r.efra= value;
+}
+
#else
void RNA_def_scene(BlenderRNA *brna)
@@ -105,6 +119,18 @@ void RNA_def_scene(BlenderRNA *brna)
RNA_def_property_int_sdna(prop, NULL, "r.cfra");
RNA_def_property_range(prop, MINFRAME, MAXFRAME);
RNA_def_property_ui_text(prop, "Current Frame", "Current frame.");
+
+ prop= RNA_def_property(srna, "start_frame", PROP_INT, PROP_NONE);
+ RNA_def_property_flag(prop, PROP_NOT_DRIVEABLE);
+ RNA_def_property_int_sdna(prop, NULL, "r.sfra");
+ RNA_def_property_int_funcs(prop, NULL, "rna_Scene_start_frame_set", NULL);
+ RNA_def_property_ui_text(prop, "Start Frame", "Start frame.");
+
+ prop= RNA_def_property(srna, "end_frame", PROP_INT, PROP_NONE);
+ RNA_def_property_flag(prop, PROP_NOT_DRIVEABLE);
+ RNA_def_property_int_sdna(prop, NULL, "r.efra");
+ RNA_def_property_int_funcs(prop, NULL, "rna_Scene_end_frame_set", NULL);
+ RNA_def_property_ui_text(prop, "End Frame", "End frame.");
prop= RNA_def_property(srna, "stamp_note", PROP_STRING, PROP_NONE);
RNA_def_property_string_sdna(prop, NULL, "r.stamp_udata");