Fix T72578: overwrite not animatable in 2.8x

This was disabled as part of b66ae8259e 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.
This commit is contained in:
Campbell Barton 2019-12-24 09:02:11 +11:00
parent 6c2eeba0c7
commit f46ba1a7e0
Notes: blender-bot 2023-02-14 04:24:05 +01:00
Referenced by issue #72578, Removed Keying ability overwrites files in 2.8x
1 changed files with 0 additions and 1 deletions

View File

@ -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);