I am trying to delete properties which some plugin messed up.
I wanted to delete a property PN781673099840471551 with
del bpy.data.scenes["Scene"].PN781673099840471551
but that does not work, (type : bpy_struct)
are these strange properties blender related, they got somehow generated from loading and unloading a plugin. And I am stuck with some values inside my blender file which crash the plugin when loading. Is there anykind of tool to remove unwanted properties?
(What I did: I added somewhere in an plugin (RIB Mosaic) related panel an illegal value, and saved the blend file, and now the value is somehow stuck inside my blend file, so when trying to use the plugin again the plugin raises an exception...)
del bpy.types.Scene.PN781673099840471551? – zeffii May 28 '15 at 15:03bpy.data.scenes["Scene"].PN781673099840471551– zeffii May 28 '15 at 15:09del bpy.types.Scene.PN781673099840471551– Gabriel May 28 '15 at 15:13