From fd8d245e6a800cdce29065fe213a195ec9a98b63 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Fri, 12 Jun 2020 18:59:16 +0200 Subject: LibOverride: Remove 'auto override' option. Now all overrides are handled that way. Performances of the process look decent enough, even with production characters... If performance issues still arise, we'll investigate other solutions. This should also make T73154 obsolete now. --- source/blender/makesrna/intern/rna_ID.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'source/blender/makesrna/intern/rna_ID.c') diff --git a/source/blender/makesrna/intern/rna_ID.c b/source/blender/makesrna/intern/rna_ID.c index e0d862ee92a..bc4ba6dd387 100644 --- a/source/blender/makesrna/intern/rna_ID.c +++ b/source/blender/makesrna/intern/rna_ID.c @@ -1430,14 +1430,6 @@ static void rna_def_ID_override_library(BlenderRNA *brna) RNA_def_pointer( srna, "reference", "ID", "Reference ID", "Linked ID used as reference by this override"); - prop = RNA_def_boolean( - srna, - "auto_generate", - true, - "Auto Generate Override", - "Automatically generate overriding operations by detecting changes in properties"); - RNA_def_property_boolean_sdna(prop, NULL, "flag", OVERRIDE_LIBRARY_AUTO); - RNA_def_collection(srna, "properties", "IDOverrideLibraryProperty", -- cgit v1.2.3