forked from ChristopheSeux/boneWidget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprefs.py
55 lines (44 loc) · 1.43 KB
/
prefs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import bpy
from bpy.types import AddonPreferences
from bpy.props import StringProperty
class BoneWidgetPreferences(AddonPreferences):
bl_idname = __package__
# widget prefix
widget_prefix: StringProperty(
name="Bone Widget prefix",
description="Choose a prefix for the widget objects",
default="WDGT_",
)
'''
#symmetry suffix (will try to implement this later)
symmetry_suffix: EnumProperty(
name="Bone Widget symmetry suffix",
description="Choose a naming convention for the symmetrical widgets",
default=".L",
)
'''
# collection name
bonewidget_collection_name: StringProperty(
name="Bone Widget collection name",
description="Choose a name for the collection the widgets will appear",
default="WDGT_shapes",
)
def draw(self, context):
layout = self.layout
row = layout.row()
col = row.column()
col.prop(self, "widget_prefix", text="Widget Prefix")
#add symmetry suffix later
#col.prop(self, "symmetry_suffix", text="Symmetry suffix")
col.prop(self, "bonewidget_collection_name", text="Collection name")
classes = (
BoneWidgetPreferences,
)
def register():
from bpy.utils import register_class
for cls in classes:
register_class(cls)
def unregister():
from bpy.utils import unregister_class
for cls in classes:
unregister_class(cls)