[Bf-blender-cvs] [f46ba1a7e06] master: Fix T72578: overwrite not animatable in 2.8x

Campbell Barton noreply at git.blender.org
Mon Dec 23 23:08:12 CET 2019


Commit: f46ba1a7e06d534bd93c950aed4feca87edc4fea
Author: Campbell Barton
Date:   Tue Dec 24 09:02:11 2019 +1100
Branches: master
https://developer.blender.org/rBf46ba1a7e06d534bd93c950aed4feca87edc4fea

Fix T72578: overwrite not animatable in 2.8x

This was disabled as part of b66ae8259e015 which disabled
animation for display mode and other cases where it doesn't make sense.

However it's useful to be able to overwrite frame ranges,
adding this back.

===================================================================

M	source/blender/makesrna/intern/rna_scene.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index e548e8c96c2..ea1fb1eb489 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -5788,7 +5788,6 @@ static void rna_def_scene_render_data(BlenderRNA *brna)
 
   prop = RNA_def_property(srna, "use_overwrite", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_negative_sdna(prop, NULL, "mode", R_NO_OVERWRITE);
-  RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
   RNA_def_property_ui_text(prop, "Overwrite", "Overwrite existing files while rendering");
   RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL);



More information about the Bf-blender-cvs mailing list