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:
authorTon Roosendaal <ton@blender.org>2013-03-04 13:55:43 +0400
committerTon Roosendaal <ton@blender.org>2013-03-04 13:55:43 +0400
commit4fd223075503610392e368eb2e1afb87578f06df (patch)
tree2d976795ff251eac1984575b754b2a7db4e6cf80 /source
parent8ea7b742f66a9cf6b19369685bed75c0e338277d (diff)
Bugfix #34493
Should go to 2.66a Image Sequence texture now allows to animate "Offset" again with fcurves. This was disabled for 2.65, it only works for fcurve key inserting (not for drivers), but too many people have been using to animate character textures already...
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_image.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_image.c b/source/blender/makesrna/intern/rna_image.c
index be462e20ee7..ee4ea369425 100644
--- a/source/blender/makesrna/intern/rna_image.c
+++ b/source/blender/makesrna/intern/rna_image.c
@@ -454,7 +454,6 @@ static void rna_def_imageuser(BlenderRNA *brna)
RNA_def_property_int_sdna(prop, NULL, "offset");
RNA_def_property_ui_text(prop, "Offset", "Offset the number of the frame to use in the animation");
RNA_def_property_update(prop, 0, "rna_ImageUser_update");
- RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
prop = RNA_def_property(srna, "frame_start", PROP_INT, PROP_TIME);
RNA_def_property_int_sdna(prop, NULL, "sfra");