Welcome to mirror list, hosted at ThFree Co, Russian Federation.

save_categories.py « materials_library_vx - git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f90fcdf795b10145972ba437a238b9423cf8ed8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

print(30*"+")
import bpy
if not hasattr(bpy.context.scene, "matlib_categories"):
	class EmptyProps(bpy.types.PropertyGroup):
		pass
	bpy.utils.register_class(EmptyProps)
	bpy.types.Scene.matlib_categories = bpy.props.CollectionProperty(type=EmptyProps)
cats = bpy.context.scene.matlib_categories
for cat in cats:
	cats.remove(0)

cat = cats.add()
cat.name = "Colors" 
cat = cats.add()
cat.name = "Nature" 
cat = cats.add()
cat.name = "Woods" 
bpy.ops.wm.save_mainfile(filepath="D:\\Blender Foundation\\Blender\\2.73\\scripts\\addons\\matlib\\Otherlib.blend", check_existing=False, compress=True)