Index: source/blender/makesrna/intern/rna_image.c =================================================================== --- source/blender/makesrna/intern/rna_image.c (révision 55142) +++ source/blender/makesrna/intern/rna_image.c (copie de travail) @@ -633,6 +633,11 @@ RNA_def_property_ui_text(prop, "Animation End", "End frame of an animated texture"); RNA_def_property_update(prop, NC_IMAGE | ND_DISPLAY, "rna_Image_animated_update"); + prop = RNA_def_property(srna, "frame_current", PROP_INT, PROP_NONE); + RNA_def_property_int_sdna(prop, NULL, "lastframe"); + RNA_def_property_range(prop, MINAFRAME, MAXFRAME); + RNA_def_property_ui_text(prop, "Current Frame", "Current frame number in image sequence or movie"); + prop = RNA_def_property(srna, "fps", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "animspeed"); RNA_def_property_range(prop, 1, 100);