I had to import many FBX files (exported from 3d max) and save them as a blender files and just now realized that all the files also imported custom properties for every objects material.
I could delete it manually but since its a ton of files with tons of materials i'd prefer to do this by script. However I can't seem to get it to work.
I checked the python code for the custom property and was hoping I could remove it with this line:
bpy.ops.wm.properties_remove(data_path="material", property="�L��") But that sadly didn't work. It doesn't understand the "property". I would like the script to be able to run thru all materials in the scene and then delete this (or if possible ANY) custom property for each material.
