This was causing too many problems. Better to just not enable this for

now. There are really many good uses for this anyway.
This commit is contained in:
Joshua Leung
2011-04-20 09:41:44 +00:00
parent 661d6ff7e5
commit e0a81dd1a8

View File

@@ -3201,6 +3201,7 @@ void RNA_def_scene(BlenderRNA *brna)
/* Layers */
prop= RNA_def_property(srna, "layers", PROP_BOOLEAN, PROP_LAYER_MEMBER);
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); // this seems to be too much trouble with depsgraph updates/etc. currently (20110420)
RNA_def_property_boolean_sdna(prop, NULL, "lay", 1);
RNA_def_property_array(prop, 20);
RNA_def_property_boolean_funcs(prop, NULL, "rna_Scene_layer_set");